AttributeError: module 'tkinter.font' has no attribute 'Bold'
时间: 2024-05-17 07:10:59 浏览: 211
AttributeError: module 'tensorflow.compat.v1' has no attribute '
AttributeError: module 'tkinter.font' has no attribute 'Bold'是指在使用tkinter.font模块时,该模块中没有名为'Bold'的属性或方法。通常情况下,这是由于拼写错误或使用了不存在的属性或方法导致的。
如果你想使用tkinter中的加粗字体,可以使用"bold"属性,而不是"Bold"属性。以下是一个简单的示例代码:
```
from tkinter import *
from tkinter.font import Font
root = Tk()
myFont = Font(family="Helvetica", size=12, weight="bold")
label = Label(root, text="Hello World", font=myFont)
label.pack()
root.mainloop()
```
阅读全文