Advertisement
teslariu

funciones

Dec 23rd, 2021
1,499
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. from ingreso import ingresar_numero
  5.  
  6.  
  7. x = ingresar_numero("x")
  8. y = ingresar_numero("y")
  9. w = ingresar_numero("w")
  10. z = ingresar_numero("z")
  11.  
  12. print(f"La suma de todo es {x+w+y+z}")
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement