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