Python編程基礎(chǔ)與應(yīng)用 第2版 課習(xí)題答案 李方園 第6章答案_第1頁(yè)
Python編程基礎(chǔ)與應(yīng)用 第2版 課習(xí)題答案 李方園 第6章答案_第2頁(yè)
Python編程基礎(chǔ)與應(yīng)用 第2版 課習(xí)題答案 李方園 第6章答案_第3頁(yè)
Python編程基礎(chǔ)與應(yīng)用 第2版 課習(xí)題答案 李方園 第6章答案_第4頁(yè)
全文預(yù)覽已結(jié)束

下載本文檔

版權(quán)說(shuō)明:本文檔由用戶(hù)提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

6.1以例程為例,運(yùn)行結(jié)果如圖1所示圖1GUI控件包括:窗口、菜單等。6.2參考程序(注意文件名稱(chēng)不能是jpg,且需要放置在當(dāng)前目錄下)importtkinterastkroot=tk.Tk()#增加背景圖片photo=tk.PhotoImage(file="bg.png")theLabel=tk.Label(root,text="大家好,才是真的好.",#內(nèi)容justify=tk.LEFT,#對(duì)齊方式image=photo,#加入圖片compound=tk.CENTER,#關(guān)鍵:設(shè)置為背景圖片font=("華文行楷",20),#字體和字號(hào)fg="white")#前景色theLabel.pack()tk.mainloop()6.3參考程序(這里是復(fù)選框)importtkinterastktop=tk.Tk()CheckVar1=tk.IntVar()CheckVar2=tk.IntVar()CheckVar3=tk.IntVar()C1=tk.Checkbutton(top,text="One",variable=CheckVar1,\onvalue=1,offvalue=0,height=1,\width=20)C2=tk.Checkbutton(top,text="Two",variable=CheckVar2,\onvalue=1,offvalue=0,height=1,\width=20)C3=tk.Checkbutton(top,text="Three",variable=CheckVar3,\onvalue=1,offvalue=0,height=1,\width=20)C1.pack()C2.pack()C3.pack()top.mainloop()6.4參考程序importtkinterasTK#主窗口root=TK.Tk()root.title("Caculator")root.resizable(0,0)root.geometry('320x420')result=TK.StringVar()equation=TK.StringVar()result.set('')equation.set('0')#獲得按下的數(shù)字或者符號(hào)defgetnum(num):temp=equation.get()temp2=result.get()print(temp)print(temp2)iftemp2!='':temp='0'temp2=''result.set(temp2)if(temp=='0'):temp=''temp=temp+numequation.set(temp)print(equation)#按下退格鍵時(shí),去除最后一個(gè)字符defback():temp=equation.get()equation.set(temp[:-1])#按下MC時(shí),清空算式行與結(jié)果行defclear():equation.set('0')result.set('')#按下等于號(hào)時(shí)計(jì)算結(jié)果defrun():temp=equation.get()temp=temp.replace('x','*')temp=temp.replace('÷','/')print(temp)answer=eval(temp)answer='%.2f'%answerresult.set(str(answer))#結(jié)果顯示框show_uresult=TK.Label(root,bg='white',fg='black',font=('Arail','15'),bd='0',textvariable=equation,anchor='se')show_dresult=TK.Label(root,bg='white',fg='black',font=('Arail','30'),bd='0',textvariable=result,anchor='se')show_uresult.place(x='10',y='10',width='300',height='50')show_dresult.place(x='10',y='60',width='300',height='50')#按鈕#第1行按鈕button_7=TK.Button(root,text='7',bg='DarkGray',command=lambda:getnum('7'))button_7.place(x='10',y='150',width='60',height='40')button_8=TK.Button(root,text='8',bg='DarkGray',command=lambda:getnum('8'))button_8.place(x='90',y='150',width='60',height='40')button_9=TK.Button(root,text='9',bg='DarkGray',command=lambda:getnum('9'))button_9.place(x='170',y='150',width='60',height='40')button_multiplication=TK.Button(root,text='X',bg='DarkGray',command=lambda:getnum('x'))button_multiplication.place(x='250',y='260',width='60',height='40')#第2行按鈕button_4=TK.Button(root,text='4',bg='DarkGray',command=lambda:getnum('4'))button_4.place(x='10',y='205',width='60',height='40')button_5=TK.Button(root,text='5',bg='DarkGray',command=lambda:getnum('5'))button_5.place(x='90',y='205',width='60',height='40')button_6=TK.Button(root,text='6',bg='DarkGray',command=lambda:getnum('6'))button_6.place(x='170',y='205',width='60',height='40')button_minus=TK.Button(root,text='—',bg='DarkGray',command=lambda:getnum('-'))button_minus.place(x='250',y='205',width='60',height='40')#第3行按鈕button_1=TK.Button(root,text='1',bg='DarkGray',command=lambda:getnum('1'))button_1.place(x='10',y='260',width='60',height='40')button_2=TK.Button(root,text='2',bg='DarkGray',command=lambda:getnum('2'))button_2.place(x='90',y='260',width='60',height='40')button_3=TK.Button(root,text='3',bg='DarkGray',command=lambda:getnum('3'))button_3.place(x='170',y='260',width='60',height='40')button_plus=TK.Button(root,text='+',bg='DarkGray',command=lambda:getnum('+'))button_plus.place(x='250',y='150',width='60',height='40')#第4、5按鈕button_MC=TK.Button(root,text='C',bg='DarkGray',command=clear)button_MC.place(x='90',y='370',width='60',height='40')button_0=TK.Button(root,text='0',bg='DarkGray',command=lambda:getnum('0'))button_0.place(x='10',y='315',width='140',height='40')button_point=TK.Button(root,text='.',bg='DarkGray',command=lambda:getnum('.'))button_point.place(x='170',y='315',width='60',height='40')button_equal=TK.Button(root,text='=',bg='DarkGray',command=run)button_equal.place(x='170',y='370',width='140',height='40')button_back=TK.Button(root,text='<-',bg='DarkGray',comman

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶(hù)所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶(hù)上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶(hù)上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶(hù)因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

最新文檔

評(píng)論

0/150

提交評(píng)論