1
0
Fork 0

Zaktualizuj 'labs02/task06.py'

dodaje
This commit is contained in:
Justyna Adamczyk 2018-05-22 18:40:20 +00:00
parent 2ef1c48c97
commit 3672f3d65e
1 changed files with 9 additions and 1 deletions

View File

@ -10,7 +10,15 @@ ma być zwracany napis "It's not a Big 'No!'".
"""
def big_no(n):
pass
if n<5:
zdanie="It's not a Big 'No!'"
else:
zdanie='N'
for i in range(n):
zdanie=zdanie + 'O'
zdanie = zdanie+'!'
return zdanie
def tests(f):
inputs = [[5], [6], [2]]