1
0
forked from tdwojak/Python2017
Python2017/labs02/task10.py
s45146 6c2b8ac2f9 Praca domowa nr 1
Rozwiązanie - Piotr Bystrzycki - nr indeksu 45146
2017-11-20 22:33:08 +01:00

33 lines
754 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'.
"""
import string as str
def pokemon_speak(text):
lt = list(text)
for i in range(len(lt)):
if i%2 == 0:
lt[i] = lt[i].upper()
return ''.join(lt)
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))