我嘗試在Sci-notebook Python應用程序中使用符號按鈕。 但作爲阿爾法節目「^」如何在tkinter按鈕中使用符號字體? python
symbol = {'alpha':97,'beta':98,'gamma':103,'delta':100,\
'epsilon':101,'zeta':122,'eta':104,'theta':113,\
..... }
xp=0
yp=0
sym_button=[]
for i in range(len(symbol.items())):
cp=chr(symbol.items()[i][1])
sym_button.append(tk.Button(frame1, width=1, height=1, font='Symbol 9', text=cp))
sym_button[len(sym_button)-1].place(x=840+xp,y=0+yp)
xp=xp+17
if xp+840>960:
xp=0
yp=yp+25
我需要嘗試像還是什麼?
cp=chr(symbol.items()[i][1]).encode('Symbol')
LookupError: unknow encoding: Symbol
您是否在尋找UTF-8個字符? (對於Alpha,Beta,Gamma,Delta ...) – FunkySayu
cp = unichr(0xF000 + symbol.items()[i] [1])不起作用,它在Button中顯示爲問號[?] –