Advertisement
teslariu

mi primer programa

Apr 17th, 2023
793
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.30 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3.  
  4. """
  5. Soy un comentario
  6. de varias lineas, a veces
  7. me llaman comentario multilinea
  8. """
  9. '''
  10. Soy otro comentario
  11. multilinea
  12. '''
  13. # yo tengo una sola linea
  14.  
  15. a = 1
  16. b = 2
  17. c = 3
  18.  
  19. print("a =", a, "b =", b, "c =", c)
  20.  
  21. print("a + b + c =", a + b +c)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement