forked from tdwojak/Python2017
commited tasks
This commit is contained in:
parent
82d5caf3d7
commit
712d7f43c1
@ -10,7 +10,14 @@ ma być zwracany napis "It's not a Big 'No!'".
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
def big_no(n):
|
def big_no(n):
|
||||||
pass
|
out = "N"
|
||||||
|
if n < 5:
|
||||||
|
out = "It's not a Big 'No!'"
|
||||||
|
else:
|
||||||
|
for i in n:
|
||||||
|
out += "O"
|
||||||
|
out += "!"
|
||||||
|
return out
|
||||||
|
|
||||||
def tests(f):
|
def tests(f):
|
||||||
inputs = [[5], [6], [2]]
|
inputs = [[5], [6], [2]]
|
||||||
|
Loading…
Reference in New Issue
Block a user