You could always use a list comprehension and check the results with all, it would be a little less resource intensive than using a regex: all([c in string.letters + string.digits + ["_"] "_", "-"] for c in mystring])
|
2 | added 5 characters in body | ||
|
|
||||
|
1 |
|
||
|
You could always use a list comprehension and check the results with all, it would be a little less resource intensive than using a regex: |
||||
