我試圖運行給予蟒蛇片段: from tkinter import *
from tkinter import font
root = Tk()
list_fonts = list(font.families())
for i in list_fonts:
print(i)
root.mainloop()
我得到的輸出: Sitka Display
Sitka Banner
我想創建一個有圖片的類,並通過鼠標點擊更改爲下一個類。我是oop的新手,我的想法是使類相似到現實生活中每個新圖片都有新的類實例,是否可以這樣做?這是我的代碼 import tkinter as tk
from PIL import Image,ImageTk
class Picture():
_count=1
def __init__(self,window):
我設計了一個可以旋轉的弧線,但我無法弄清楚爲什麼IDLE告訴我在我的代碼中仍然存在錯誤。 這裏是我的代碼: from Tkinter import*
from math import *
from time import sleep
pai=Tk()
cv=Canvas(pai,width=1100,height=631,bg="white")
cv.pack()
bb=(150,11
我曾嘗試使用下面的代碼來繪製,在Tkinter的創建一個線上的點嘗試: import tkinter as tk
from time import sleep
def myfunction(event):
x, y = event.x, event.y
x1 = (x+1)
y1 = (y+1)
canvas.create_line(x, y, x1,
這裏是我的代碼: import sys
from tkinter import*
myGui=Tk()
nameentr=StringVar()
#myGui.geometry('450x450')
myGui.title('Playing with the layout of Buttons')
Label1=Label(myGui,text='Enter Text Here'
我正在製作一個記事本,並且已經創建了字體工具,但是這會更改所有文字的字體,而不僅僅是選定的部分或您所在的部分 所有這些工具的代碼如下所示: def ng():
global fn #the font
global b #Bold variable
b=not b
if b==True:
fn.configure(weight="bold")