1
0
forked from tdwojak/Python2017

update test task

Signed-off-by: s45167 <krzysztof.spalinski@op.pl>
This commit is contained in:
s45167 2017-11-30 21:55:56 +01:00
parent 50ec721ed5
commit de31149741

View File

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