Created
February 6, 2024 21:23
-
-
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 …
This file contains hidden or 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
| 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