2017-11-18 16:45:28 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
Napisz funkcję pokemon_speak, która zamienia w podanym napisie co drugą literę
|
|
|
|
na wielką. Np. pokemon_speak('pokemon') powinno zwrócić 'PoKeMoN'.
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
def pokemon_speak(text):
|
2017-12-01 22:48:15 +01:00
|
|
|
letterList = list(text)
|
|
|
|
|
|
|
|
x = 0
|
|
|
|
for i in letterList:
|
|
|
|
if i.isalpha() and (x == 0 or x % 2 == 0):
|
|
|
|
letterList[x] = i.upper()
|
|
|
|
x += 1
|
|
|
|
finalOutput = ''.join(letterList)
|
|
|
|
return finalOutput
|
|
|
|
|
|
|
|
|
2017-11-18 16:45:28 +01:00
|
|
|
|
|
|
|
|
|
|
|
def tests(f):
|
2017-12-01 22:48:15 +01:00
|
|
|
inputs = [ ['pokemon'], ['do not want'], ['POKEMON']]
|
2017-11-18 16:45:28 +01:00
|
|
|
outputs = ['PoKeMoN', 'Do nOt wAnT', 'POKEMON']
|
|
|
|
|
|
|
|
for input, output in zip(inputs, outputs):
|
|
|
|
if f(*input) != output:
|
|
|
|
return "ERROR: {}!={}".format(f(*input), output)
|
|
|
|
break
|
|
|
|
return "TESTS PASSED"
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
print(tests(pokemon_speak))
|