1
0
forked from tdwojak/Python2017

Zaktualizuj 'labs02/task10.py'

This commit is contained in:
s45167 2017-12-01 13:05:16 +00:00
parent 1c6f0b23ae
commit e6c3938ebc

View File

@ -19,7 +19,7 @@ def pokemon_speak(text):
return a return a
def tests(f): def tests(f):
inputs = [['pokemon'], ['do not want'], ['POKEMON']] inputs = ['pokemon', 'do not want', 'POKEMON']
outputs = ['PoKeMoN', 'Do nOt wAnT', 'POKEMON'] outputs = ['PoKeMoN', 'Do nOt wAnT', 'POKEMON']
for input, output in zip(inputs, outputs): for input, output in zip(inputs, outputs):