1
0
forked from tdwojak/Python2017

Update 'labs02/task06.py'

This commit is contained in:
s45164 2017-12-01 17:17:45 +00:00
parent cb3142f748
commit fb7e6e642e

View File

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