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