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

35 lines
764 B
Python
Raw Permalink 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'.
"""
def pokemon_speak(text):
2017-12-01 18:13:09 +01:00
i=0
res=""
for s in text:
if i%2==0:
res += s.upper()
else:
res+= s
i=i+1
return res
2017-11-18 16:45:28 +01:00
pass
def tests(f):
2017-11-19 15:38:59 +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))