Created
February 6, 2024 06:15
-
-
Save jlcarrascof/86008215769e2a420eb4e4be95a295ba to your computer and use it in GitHub Desktop.
Codigo Facilito Python Challenge - Day 1
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
# Request data from the user and store it in variables | |
first_name = input('Enter your First Name: ') | |
last_name = input('Enter your Last Name: ') | |
telephone = int(input('Enter your Telephone Number: ')) | |
email = input('Enter your e-mail: ') | |
# Print the requested results. | |
print('Hola' + ' ' + first_name + ' ' + last_name + ', en breve recibirás un correo a ' + email + '.') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment