python label字体颜色
时间: 2023-11-19 11:50:04 浏览: 407
python之pyqt5通过按钮改变Label的背景颜色方法
在 Python 中,可以使用 PyQt 或者 Tkinter 这两个库来创建 GUI 应用程序并设置 label 的字体颜色。
使用 PyQt 的示例代码如下:
```python
from PyQt5.QtWidgets import QApplication, QLabel, QVBoxLayout, QWidget
from PyQt5.QtGui import QColor
app = QApplication([])
window = QWidget()
layout = QVBoxLayout()
label = QLabel("Hello, World!")
label.setStyleSheet("color: red") # 设置字体颜色为红色
layout.addWidget(label)
window.setLayout(layout)
window.show()
app.exec_()
```
使用 Tkinter 的示例代码如下:
```python
from tkinter import Tk, Label
root = Tk()
label = Label(root, text="Hello, World!", fg="red") # 设置字体颜色为红色
label.pack()
root.mainloop()
```
阅读全文