python 颜色代码
时间: 2024-01-08 19:21:20 浏览: 123
以下是Python中常用的颜色代码示例:
1. 使用ANSI转义序列设置终端文本颜色:
```python
# 设置文本颜色为红色
print("\033[31mThis is red text\033[0m")
# 设置文本背景颜色为绿色
print("\033[42mThis has a green background\033[0m")
```
2. 使用Python的`colorama`库设置终端文本颜色:
```python
from colorama import Fore, Back, Style
# 设置文本颜色为红色
print(Fore.RED + "This is red text" + Style.RESET_ALL)
# 设置文本背景颜色为绿色
print(Back.GREEN + "This has a green background" + Style.RESET_ALL)
```
3. 使用`matplotlib`库绘制图形并设置颜色:
```python
import matplotlib.pyplot as plt
# 绘制一个红色的点
plt.plot([1, 2, 3, 4], [1, 4, 9, 16], 'ro')
# 绘制一个蓝色的线
plt.plot([1, 2, 3, 4], [1, 4, 9, 16], 'b-')
# 显示图形
plt.show()
```
阅读全文