Skip to content

Instantly share code, notes, and snippets.

@psicobyte
Created August 6, 2013 12:01
Show Gist options
  • Save psicobyte/6163890 to your computer and use it in GitHub Desktop.
Save psicobyte/6163890 to your computer and use it in GitHub Desktop.
Ejemplo para el Curso de Introducción a Python del Centro de Enseñanzas Virtuales de la Universidad de Granada
#!/usr/bin/python
# coding: UTF-8
# Esto es un entero
Entero = 2000
#Convertimos a Cadena
Cadena= str(Entero)
print type(Entero)
print type( Cadena)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment