其他分享
首页 > 其他分享> > 变量

变量

作者:互联网

注释

单行注释

语法:
# 注释的内容

说明多行代码的功能时,一般将注释写在代码的上一行

# 打印hello
print(hello)
print(hello)
print(hello)

说明单行代码时,一般写在右边

print(1+2) # 加法运算

变量

先定义后使用

标签:变量,驼峰,代码,注释,print,变量名,hello
来源: https://www.cnblogs.com/tangyuanzi/p/16558619.html