forked from tdwojak/Python2017
31 lines
820 B
Python
31 lines
820 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(words):
|
|
words = str()
|
|
for i, l in enumerate(text): #zwraca element i index <- enumerate(iterable, start=0)
|
|
if i % 2 == 0:
|
|
words += l.upper()
|
|
else:
|
|
words += l
|
|
return words
|
|
|
|
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))
|