Skip to content

Instantly share code, notes, and snippets.

View patrick100's full-sized avatar

Patrick Lazo patrick100

View GitHub Profile
@patrick100
patrick100 / exercise3
Created June 26, 2022 04:14
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))