forked from tdwojak/Python2017
task06 passed
This commit is contained in:
parent
d790e85a09
commit
fea63c37b7
@ -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)+'!')
|
||||
if n <5:
|
||||
return ("It's not a Big 'No!'")
|
||||
|
||||
def tests(f):
|
||||
inputs = [[5], [6], [2]]
|
||||
|
Loading…
Reference in New Issue
Block a user