Skip to content

Instantly share code, notes, and snippets.

@CarlosRomero55
Created February 6, 2024 21:23
Show Gist options
  • Select an option

  • Save CarlosRomero55/ba71a77dec91aed8df7f7b364d2b8c3d to your computer and use it in GitHub Desktop.

Select an option

Save CarlosRomero55/ba71a77dec91aed8df7f7b364d2b8c3d to your computer and use it in GitHub Desktop.
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 …
name = input ('Ingrese sus Nombre (S) : ')
lastname = input('Ingrese sus apellidos : ')
cell_num = int (input( ' Ingrese su Número de teléfono : '))
mail = input('Ingrese su correo electrónico : ')
full_name = name +' '+ lastname
print ( 'Hola ' + full_name + ',en breve recibirás un correo a ' + mail )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment