python tkinter 怎么设置字体大小
时间: 2023-10-19 22:08:30 浏览: 83
python tkinter guide
你可以使用Tkinter中的Font类来设置字体大小。首先,需要导入Font:
```python
from tkinter import *
from tkinter.font import Font
```
然后创建一个Font对象:
```python
myFont = Font(size=16)
```
最后将该字体应用于需要的控件上:
```python
myLabel = Label(root, text="Hello World", font=myFont)
```
这样就可以将字体大小设置为16了。
阅读全文