forked from tdwojak/Python2017
Task06 completed - passed
This commit is contained in:
parent
69de9a7441
commit
f4f28c0551
@ -10,7 +10,10 @@ ma być zwracany napis "It's not a Big 'No!'".
|
||||
"""
|
||||
|
||||
def big_no(n):
|
||||
pass
|
||||
if n >= 5:
|
||||
return ("N" + ("O" * n) + "!")
|
||||
else:
|
||||
return "It's not a Big 'No!'"
|
||||
|
||||
def tests(f):
|
||||
inputs = [[5], [6], [2]]
|
||||
|
Loading…
Reference in New Issue
Block a user