Advertisement
teslariu

nombre_v

Aug 27th, 2021
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.34 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # Script que pide un nombre y responde con un saludo. Si el usuario no
  5. # dice su nombre, el script debe indicarlo
  6. # ayuda: funciĆ³n len
  7.  
  8. nombre = input("Ingrese su nombre: ")
  9. nombre = nombre.strip()
  10.  
  11. if nombre != "":
  12.     print(f"Hola {nombre}")
  13. else:
  14.     print("No me has dicho tu nombre")
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement