Python语言基础 互动版

在线工具推荐: Three.js AI纹理开发包 - YOLO合成数据生成器 - GLTF/GLB在线编辑 - 3D模型格式在线转换 - 可编程3D场景编辑器

注释


python中单行注释采用# 开头。

# print("Hello world");.

python没有块注释,所以现在推荐的多行注释也是采用的#

# This is an apple.
# This is an apple, too.
# This is an apple, too.
# I said that already.