1
0
forked from tdwojak/Python2017
This commit is contained in:
Przemysław Kaczmarek 2017-11-28 19:38:07 +01:00
parent 4f6c4e9062
commit d9564f3b1a

View File

@ -9,11 +9,16 @@ na wielką. Np. pokemon_speak('pokemon') powinno zwrócić 'PoKeMoN'.
def pokemon_speak(text):
pass
pokemon_text=[]
for i in range(len(text)):
if i%2==0 and ord(text[i])>=97 and ord(text[i])<=122:
pokemon_text.append(str(chr(ord(text[i])-32)))
else:
pokemon_text.append((text[i]))
return "".join(pokemon_text)
def tests(f):
inputs = [['pokemon'], ['do not want'], 'POKEMON']
inputs = [['pokemon'], ['do not want'], ['POKEMON']]
outputs = ['PoKeMoN', 'Do nOt wAnT', 'POKEMON']
for input, output in zip(inputs, outputs):
@ -23,4 +28,4 @@ def tests(f):
return "TESTS PASSED"
if __name__ == "__main__":
print(tests(pokemon_speak))
print(tests(pokemon_speak))