本站改版新增arduino频道
1.2.1.2. 注释
代码中的注释有助于我们理解代码,在程序运行时,uPyCraft会忽略注释。
单行注释
MicroPython中的单行注释以#开头,后面的文字直到行尾都算注释。
示例:
>>> print("hello world") #This is a annotation
hello world
多行注释
如果要进行多行的注释,可以使用多个#号, 三个单引号(’‘’)或三个双引号(”“”)。
示例:
'''
This is a multi-line comment.
Prints hello world.
'''
print("hello world")
Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号
执行时间: 0.0094518661499023 seconds