1
0
forked from tdwojak/Python2018
This commit is contained in:
s327689 2018-06-01 17:09:47 +02:00 committed by wagner.agnieszka
parent 7714575879
commit 84ac4edce9

View File

@ -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]]