1
0
forked from tdwojak/Python2018
Python2018/labs02/task10.py
Magdalena Lewandowicz c1a510a707 Zadania 7-11
2018-05-29 18:50:29 +02:00

35 lines
808 B
Python

#!/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):
text2=""
b=""
a = len(text)
for i in range(a):
if (i % 2 == 0):
b = text[i].upper()
text2 += b
else:
text2 += text[i]
return text2
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))