1
0
Fork 0

commited tasks

This commit is contained in:
s45150 2017-11-25 14:53:51 +01:00
parent 82d5caf3d7
commit 712d7f43c1
1 changed files with 8 additions and 1 deletions

View File

@ -10,7 +10,14 @@ ma być zwracany napis "It's not a Big 'No!'".
""" """
def big_no(n): def big_no(n):
pass out = "N"
if n < 5:
out = "It's not a Big 'No!'"
else:
for i in n:
out += "O"
out += "!"
return out
def tests(f): def tests(f):
inputs = [[5], [6], [2]] inputs = [[5], [6], [2]]