forked from tdwojak/Python2017
update test task
Signed-off-by: s45167 <krzysztof.spalinski@op.pl>
This commit is contained in:
parent
50ec721ed5
commit
de31149741
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user