Advertisement
teslariu

imp

Jun 7th, 2021
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.50 KB | None | 0 0
  1.  
  2. """
  3. a = 5
  4. b = 7
  5. c = 10
  6. resultado = a + b + c
  7. print("a:")
  8. print(a)
  9. print("\nb:")
  10. print(b)
  11. print("\nc:")
  12. print(c)
  13. print("\nresultado:")
  14. print(resultado)
  15.  
  16. # impresión en una línea
  17. print("\na:",a,"b:",b,"c:",c,"resultado:",resultado)
  18.  
  19. # impresión BONITA
  20. print(f"a:{a} b:{b} c:{c} resultado:{resultado}")
  21.  
  22. nombre = input("Ingrese su nombre: ")
  23. apellido = input("Ingrese su apellido: ")
  24. edad = input("Ingrese su edad: ")
  25.  
  26. print(f"Hola, {apellido} {nombre}, no tenès {edad} años")
  27.  
  28.  
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement