slides06-ex2-v2.py
Click here to get the file
Size
1 kB
-
File type
text/python-source
File contents
s = raw_input("Digite o seu nome: ")
resultado = ""
##for i in range(0, len(s)):
## resultado += s[len(s)-i-1].upper()
for i in range(0, len(s)):
resultado = s[i].upper() + resultado
print resultado