Advertisement
teslariu

primero

Nov 18th, 2021
1,146
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.  
  5. """
  6. Script que pide el nombre de una persona y lo saluda
  7. EJ:
  8. >>> Ingrese su nombre: Juan
  9. >>> Hola Juan
  10. """
  11. nombre = input("Por favor, ingrese su nombre: ")
  12. print("Hola", nombre)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement