Comparando Python 2.* y Python 3.* | Develop Site

Imagen de ernesto

Haciendo una comparacion en estas versiones de Python en scripts de ejemplos

raw_input e input

  • Python 3.5
    1.          >>> x = int(input("Please enter an integer: "))
    2.          Please enter an integer: 42
    3.          >>> if x < 0:
    4.          ...      x = 0
    5.          ...      print ("Negative changed to zero")
    6.          ... elif x == 0:
    7.          ...      print ("Zero")
    8.          ... elif x == 1:
    9.          ...      print ("Single")
    10.          ... else:
    11.          ...      print ("More")
    12.          ...
    13.          More
    14.      
  • Python 2.6
    1.          >>> x = int(raw_input("Please enter an integer: "))
    2.          Please enter an integer: 42
    3.          >>> if x < 0:
    4.          ...      x = 0
    5.          ...      print 'Negative changed to zero'
    6.          ... elif x == 0:
    7.          ...      print 'Zero'
    8.          ... elif x == 1:
    9.          ...      print 'Single'
    10.          ... else:
    11.          ...      print 'More'
    12.          ...
    13.          More
    14.      

Deja tu comentario o visita nuestras redes sociales:

Facebook-Twitter-Google +

Español