Files
CyberPanel/plogical/test.py
2020-03-15 21:34:26 +05:00

9 lines
145 B
Python
Executable File

import re
verifer = re.compile(r'[a-zA-Z0-9_-]+')
if verifer.match('Helloworld'):
print ('hello world')
else:
print('not hello world')