Last active
February 5, 2024 17:33
-
-
Save Jemendieta/553ab47388e44dfe1a339c44ff43fe61 to your computer and use it in GitHub Desktop.
RetoPython - Dia 05-02-24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nombre = input("Ingresa tu Nombre: ") | |
apellidos = input("Ingresa tus Apellidos: ") | |
nombre_completo = (nombre + ' ' + apellidos) | |
telefono = input("Ingresa tu nro de Teléfono: ") | |
correo = input("Ingresa tu Correo Electrónico: ") | |
print ("Hola" + ' ' + nombre_completo + ' En breve recibirás un correo a ' + correo) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment