mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2026-01-16 04:22:05 +01:00
9 lines
145 B
Python
Executable File
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') |