https://git.wmi.amu.edu.pl/tdwojak/Python2017/src/master/labs03 #1

Open
s45158 wants to merge 17 commits from s45158/Python2017:master into master
Showing only changes of commit 04b8001333 - Show all commits

View File

@ -15,9 +15,9 @@ def pokemon_speak(text):
value += i.upper() if b else i.lower()
b = not b
if i.isupper() == True:
return print(text)
return text
else:
return print(value)
return value
pokemon_speak('pokemon')