pycharm多行注释

选中需要注释的代码

ctrl+/

#首字母大写
# test = 'alex'
# v = test.capitalize()
# print (v)
#
# 字符串的加法
# n1 = 'my '
# n2 = ' name '
# n3 = 'is '
# n = n1 + n2 + n3
#
# print (n)

posted @ 2019-01-01 22:07  python_world  阅读(4076)  评论(0编辑  收藏  举报