其他分享
首页 > 其他分享> > 2、基本语法规范

2、基本语法规范

作者:互联网

注释

# 单行注释
'''
多行注释
'''
"""
多行注释
"""

输入与输出

>>> number = input('Please input a number: ')
Please input a number: 123
>>> number
'123'
>>> print(123, "hello", 1+1)
123 hello 2

参考资料

http://www.imooc.com/wiki/pythonlesson1/pythonnorm.html

标签:基本,注释,Please,规范,number,语法,123,input,hello
来源: https://www.cnblogs.com/tiansz/p/16379624.html