1
0
Fork 0

commited tasks

This commit is contained in:
s45150 2017-11-25 18:02:43 +01:00
parent 977a92617e
commit d64e3c0545
1 changed files with 3 additions and 3 deletions

View File

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