Skip to content

Instantly share code, notes, and snippets.

@cibervicho
Created February 6, 2024 04:32
Show Gist options
  • Save cibervicho/9f1df4f9135779088df795b7780ce613 to your computer and use it in GitHub Desktop.
Save cibervicho/9f1df4f9135779088df795b7780ce613 to your computer and use it in GitHub Desktop.
Reto 1, día Lunes (5-Feb-2024)
# Reto 1, día Lunes (5-Feb-2024)
# ==============================
#
# Para este primer reto de la semana, tu objetivo será poder crear un programa en Python
# el cual permita registrar a un usuario en el sistema.
#
# Para ello el programa deberá pedir a nuestro usuario final ingrese su siguiente
# información.
#
# Nombre(s)
# Apellidos
# Número de teléfono
# Correo electrónico.
#
# Una vez el usuario haya ingresado todos los datos vía teclado, el programa le dará la
# bienvenida al usuario con el siguiente mensaje:
#
# Hola + seguido del nombre completo del usuario + , en breve recibirás un correo a
# + seguido del correo electrónico.
nombre = input("Ingresa tu(s) nombre(s): ")
apellido = input("Ingresa tus apellidos: ")
telefono = str(input("Ingresa tu telefono a 10 digitos: "))
email = input("ingresa tu correo electronico: ")
print("Hola " + nombre + " " + apellido + ", en breve recibiras un correo a: " + email )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment