forked from tdwojak/Python2017
Update 'labs02/task06.py'
This commit is contained in:
parent
cb3142f748
commit
fb7e6e642e
@ -10,6 +10,10 @@ ma być zwracany napis "It's not a Big 'No!'".
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
def big_no(n):
|
def big_no(n):
|
||||||
|
if n<5:
|
||||||
|
return "It's not a Big 'No!'"
|
||||||
|
else:
|
||||||
|
return "N"+"O"*n+"!"
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def tests(f):
|
def tests(f):
|
||||||
|
Loading…
Reference in New Issue
Block a user