ej6.1.py

#!/usr/bin/python # -*- coding: utf-8 -*- palabra = raw_input("Escribe una palabra: ") i = len(palabra)-1 while i >= 0: print palabra[i] i = i - 1

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.