forked from miczar1/djfz-24_25
25 lines
519 B
Python
25 lines
519 B
Python
import re
|
|
|
|
pattern = re.compile(r'^\d{2}-\d{3}$')
|
|
|
|
def check(given_text):
|
|
result = re.search(pattern, given_text)
|
|
if result:
|
|
return given_text[:2]
|
|
else:
|
|
return '<NONE>'
|
|
|
|
### test
|
|
|
|
# with open('test.in', 'r', encoding='utf-8') as f:
|
|
# lines = f.readlines()
|
|
# for line in lines:
|
|
# line = line.strip()
|
|
# print(check(line))
|
|
|
|
while True:
|
|
text = input('Please provide your text: ')
|
|
if text == 'END':
|
|
break
|
|
print(check(text))
|
|
print('To end type END') |