1
0
forked from tdwojak/Python2017
Python2017/labs02/task10.py

33 lines
778 B
Python
Raw Normal View History

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'.
"""
## NIE WIEM CZEMU ŹLE??
2017-11-18 16:45:28 +01:00
def pokemon_speak(text):
s = ''
for i in range(len(text)):
if i % 2 == 0:
s += text[i].upper()
else:
s += text[i]
return s
2017-11-18 16:45:28 +01:00
def tests(f):
inputs = [['pokemon'], ['do not want'], 'POKEMON']
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))