mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2026-02-01 12:19:09 +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') |