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'.
|
|
|
|
"""
|
|
|
|
|
2017-11-30 22:48:43 +01:00
|
|
|
## NIE WIEM CZEMU ŹLE??
|
2017-11-18 16:45:28 +01:00
|
|
|
|
|
|
|
def pokemon_speak(text):
|
2017-11-30 22:57:42 +01:00
|
|
|
a = ''
|
2017-11-30 22:48:43 +01:00
|
|
|
for i in range(len(text)):
|
|
|
|
if i % 2 == 0:
|
2017-11-30 22:57:42 +01:00
|
|
|
a += text[i].upper()
|
2017-11-30 22:48:43 +01:00
|
|
|
else:
|
2017-11-30 22:57:42 +01:00
|
|
|
a += text[i]
|
|
|
|
return a
|
2017-11-18 16:45:28 +01:00
|
|
|
|
|
|
|
def tests(f):
|
2017-12-01 18:27:25 +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))
|