forked from tdwojak/Python2018
zrobione zad 10
This commit is contained in:
parent
655c576a5a
commit
74f9c6a5e5
@ -7,10 +7,17 @@ Napisz funkcję pokemon_speak, która zamienia w podanym napisie co drugą liter
|
|||||||
na wielką. Np. pokemon_speak('pokemon') powinno zwrócić 'PoKeMoN'.
|
na wielką. Np. pokemon_speak('pokemon') powinno zwrócić 'PoKeMoN'.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
def pokemon_speak(text):
|
def pokemon_speak(text):
|
||||||
pass
|
listy = []
|
||||||
|
|
||||||
|
for i in range(len(text)):
|
||||||
|
if i % 2 == 0:
|
||||||
|
listy.append(text[i].upper())
|
||||||
|
else:
|
||||||
|
listy.append(text[i])
|
||||||
|
|
||||||
|
return ''.join(listy)
|
||||||
|
|
||||||
|
|
||||||
def tests(f):
|
def tests(f):
|
||||||
inputs = [['pokemon'], ['do not want'], ['POKEMON']]
|
inputs = [['pokemon'], ['do not want'], ['POKEMON']]
|
||||||
|
Loading…
Reference in New Issue
Block a user