Skip to content

Instantly share code, notes, and snippets.

@patrick100
Created June 26, 2022 04:14
Show Gist options
  • Save patrick100/594ef2806084661c39b30db1752fc778 to your computer and use it in GitHub Desktop.
Save patrick100/594ef2806084661c39b30db1752fc778 to your computer and use it in GitHub Desktop.
Exercise 3
name = input("Indique su nombre: ")
age = input("Indique su edad: ")
futureAge = int(age) + 1
print('{} el año pasado tenías {} años y el próximo año cumplirás {} años)'.format(name, age, futureAge))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment