This commit is contained in:
deadsmond 2019-10-28 16:53:56 +01:00
parent bd18802057
commit 941660f05e
5 changed files with 17 additions and 0 deletions

BIN
TaskA00/.run.swp Normal file

Binary file not shown.

0
TaskA00/Makefile Normal file
View File

17
TaskA00/run Normal file
View File

@ -0,0 +1,17 @@
#!/usr/bin/python3
import re
def is_number(test):
pattern = re.compile(r'^\-?\d*[05]$')
result = re.match(pattern, test)
if result:
return "yes"
else:
return "no"
x = input()
while x:
print(is_number(x))
x = input()

0
git Normal file
View File

0
pull Normal file
View File