ChamplainTechJournals/python-csi160/week01/firstprogram.py
2025-04-19 23:42:08 -04:00

14 lines
322 B
Python

# this program says hello and asks for name, age
print('Hello world!')
print('What is your name?')
myName = input()
print('It is good to meet you, ' + myName)
print('The length of your name is:')
print(len(myName))
print('What is your age?')
myAge = input()
print('You will be ' + str(int(myAge) + 1) + ' in a year.')