Код, который я использовал:
Код: Выделить всё
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.')
Подробнее здесь: https://stackoverflow.com/questions/786 ... snt-workin