Skip to content

Instantly share code, notes, and snippets.

@Jemendieta
Last active February 5, 2024 17:33
Show Gist options
  • Save Jemendieta/553ab47388e44dfe1a339c44ff43fe61 to your computer and use it in GitHub Desktop.
Save Jemendieta/553ab47388e44dfe1a339c44ff43fe61 to your computer and use it in GitHub Desktop.
RetoPython - Dia 05-02-24
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