write a Python program which takes your age through input function and print message I will be dash years old in 2025
Answers
Answered by
0
Answer:
#python 3.7
a=int(input("Enter your age : "))
#let the present year is 2019
#so
b=a+6
print("I will be",b, "years old in 2025")
Explanation:
its might work.
or
if you have any doubt please comment !
Thanks
Similar questions