Advertisement
Fhernd

recorrido-cadena.py

Jan 15th, 2018
968
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.08 KB | None | 0 0
  1. libro = 'Tres Maestros'
  2.  
  3. for i in range(len(libro)):
  4.     print(libro[i], ' ', end = '')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement