您现在的位置是:课程教程文章
pycharm怎么注释?
2023-12-18 20:10课程教程文章 人已围观
pycharm中同时注释多行代码快捷键:
1、选中要注释的代码,然后Ctrl + '/'
具体效果:
import matplotlib.pyplot as plt data_dir = 'D:/Python/neural network/CIFAR10-Guoqingxu/data/' BATCH_SIZE = 2 image_batch, label_batch = read_cifar10(data_dir, is_train=True, batch_size=BATCH_SIZE, shuffle=True) # import matplotlib.pyplot as plt # # data_dir = 'D:/Python/neural network/CIFAR10-Guoqingxu/data/' # BATCH_SIZE = 2 # image_batch, label_batch = read_cifar10(data_dir, # is_train=True, # batch_size=BATCH_SIZE, # shuffle=True)
2、折叠要注释的代码,然后Ctrl + '/'
效果如下:
多行注释:
""" 多行注释 """
Python学习网,有大量免费的Pycharm使用教程,欢迎大家学习!
课程教程:pycharm怎么注释?下一篇:没有了