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

37 lines
875 B
Python
Raw Normal View History

2018-05-12 11:37:19 +02: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):
2018-05-31 23:55:47 +02:00
text1 = []
for znak in text:
text1.append(znak)
text2 =[]
for i in range(0, len(text)):
if (i%2)==0:
text2.append(text1[i].upper())
else:
text2.append(text1[i])
text2 = ''.join(text2)
return text2
2018-05-12 11:37:19 +02: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))