Skip to content

Instantly share code, notes, and snippets.

@jlcarrascof
Created February 6, 2024 06:15
Show Gist options
  • Save jlcarrascof/86008215769e2a420eb4e4be95a295ba to your computer and use it in GitHub Desktop.
Save jlcarrascof/86008215769e2a420eb4e4be95a295ba to your computer and use it in GitHub Desktop.
Codigo Facilito Python Challenge - Day 1
# 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