本站改版新增arduino频道

Micropython
Arduino

micropython 注释用法


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