This is my very first project that I had worked on Pycharm. This project is very hard for your first turn but it is pretty cool when you finished it!!
print(‘Hello!’)
name = input(‘What is your name?’)
name = str(name)
print(‘your name is’ , name, ‘.’ )
age = input(‘How old are you’)
age = int(age)
print(‘your age is’,age,’.’)
today = input(‘What year is it?’)
today = int(today)
born = today -age
print(‘You were born in the year’, born,’.’)
future = input(‘what year were you born’)
future = input(‘2050-2010’)
future = int(2050- born)
print(‘in the year 2050′, age,’.’)
check out what your cool project do!!!
