第一章 Python编程基础

感觉这一章对我来说没什么要学习的,就是讲了一下Python的一些基础语句,有编程经验的人肯定都知道怎么回事,但我还是把这一章的代码贴在这里吧!就是一个简单小程序而已。。。

Author:Alisita

This program says hello and ask your name

print("hello")
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.')

你可能感兴趣的:(第一章 Python编程基础)