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