task c10 done, for revision

This commit is contained in:
luminoksik 2025-01-09 16:45:52 +01:00
parent 4afd894364
commit 0c8d519bde

View File

@ -1,28 +1,27 @@
import re
pattern = re.compile(r'^\d{2}-\d{3}$')
pattern = re.compile(r'^[1248]0*$')
def check(given_text):
result = re.search(pattern, given_text)
if result:
return given_text[:2]
return 'yes'
else:
return '<NONE>'
return 'no'
# def convert(given_text):
# given_text = int(given_text, 16)
# return given_text
### test
with open('test.in', 'r', encoding='utf-8') as f:
lines = f.readlines()
for line in lines:
line = line.strip()
print(check(line))
# with open('test.in', 'r', encoding='utf-8') as f:
# lines = f.readlines()
# for line in lines:
# line = line.strip()
# print(check(line))
# flag = True
# while flag is True:
# text = input('Please provide your text: ')
# print(check(text))
while True:
text = input('Please provide your text: ')
if text == 'END':
break
print(check(text))
print('To end type END')