Triple double quotes in pycharm highlights as green and not grey(pycharm中的三重双引号突出显示为绿色而不是灰色)
问题描述
我正在使用 pycharm,它以绿色而不是灰色的三个双引号显示整个代码块(注释部分的颜色).
I am using pycharm and it shows the entire block of code in triple double quotes in green and not in grey color (color for commented section).
但是当我在 sublime 中使用时它是完美的.我怎样才能让它变灰?
But it perfect when I am using in sublime. How can I make it turn grey?
"""
It is a really long string
triple-quoted strings are used
to define multi-line strings
"""
推荐答案
Preferences => Editor => Colors &字体 => Python => Docstring
将其设为与您通常的注释颜色相同的颜色.
Preferences => Editor => Colors & Fonts => Python => Docstring
Make this the same colour as your usual comment colour.
默认情况下,文档字符串显示为不同的颜色,因为它们不是通常的注释.
By default docstrings appear as a different colour as they aren't usual comments.
这篇关于pycharm中的三重双引号突出显示为绿色而不是灰色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:pycharm中的三重双引号突出显示为绿色而不是灰色
基础教程推荐
- 筛选NumPy数组 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01