How to check if a string contains only alphanumeric characters in Python

2 Answers

0 votes
s = '12avG5'
print(s.isalnum()) 

s = '23@ac9'
print (s.isalnum()) 


'''
run:

True
False

'''

 



answered Sep 26, 2019 by avibootz
0 votes
import re

s = '12avG5'
print(re.match('^[\w]+$', s) is not None) 
 
s = '23@ac9'
print (re.match('^[\w]+$', s) is not None) 


'''
run:
 
True
False
 
'''

 



answered Sep 26, 2019 by avibootz
...