主要有三种方法:

①在程序行前面加“#”。

②将需要注释的代码用'''—-''' 包起来,此方法类似C的注释方法。

③方法一的快捷方式:将需要注释的代码选中,然后利用“Ctrl+/”进行注释。

# test=input('>>>')
# print(test)
# l=len(test)
# print(l)
# r=range(l)
# for item in r:
#     print(item,test[item])

Python学习网,有大量免费的Pycharm使用教程,欢迎大家学习!

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » pycharm如何注释