Python语法如何创建单行注释和多行注释

2024年06月03日 建站教程

如何对Python语法创建单行注释和多行注释,下面web建站小编给大家简单介绍一下具体实现代码!

Python添加注释,可以为每行插入一个 #:

#注释类型1
print("Hello, World!")

print("Hello, World!") #注释类型2

多行注释:

#This is a comment
#written in
#more than just one line
print("Hello, World!")

本文链接:http://so.lmcjl.com/news/5847/

展开阅读全文
相关内容