與小卡特一起學python 第6章 gui-圖形使用者介面 6-1-2-3-4-5 gui使用
# Easygui 安裝 python.exe setup.py install
#6-1使用按鈕得到輸入
import easygui
flavor = easygui.buttonbox("What is your favorite ice cream flavor?",
choices = ['Vanilla','Chocolate','Strawberry'])
easygui.msgbox("You picked"+ flavor)
#6-2使用選擇框得到輸入
import easygui
flavor = easygui.choicebox("What is your favorite ice cream flavor?",
choices = ['Vanilla','Chocolate','Strawberry'])
easygui.msgbox("You picked"+ flavor)
#6-3使用輸入框得到輸入
import easygui
flavor = easygui.enterbox("What's your favorite ice cream flavor?")
easygui.msgbox("You entered" + flavor)
#6-4如何建立一個預設引數
import easygui
flavor = easygui.enterbox("What's your favorite ice cream flavor?",
default = 'Vanilla')
easygui.msgbox("You entered" + flavor)
#6-5 使用easygui的猜數遊戲
import random,easygui
secret = random.randint(1,99)
guess = 0
tries = 0
easygui.msgbox("""AHOY! I'm the Dread Pirate Roberts,and I have a secret~
It's a number from 1 to 99. I'll give you 6 tries.""")
while guess != secret and tries < 6:
guess = easygui.integerbox("What's yer guess,matey?")
if not guess:break
if guess < secret:
easygui.msgbox(str(guess) + "is too low, ye scurvy dog!")
elif guess >secret:
easygui.msgbox(str(guess)+ " is too high, landlubber!")
tries = tries + 1
if guess == secret:
easygui.msgbox("Avast!Ye got it! Found my secret,ye did!secret is"+str(secret))
else:
easygui.msgbox("No more guesses! The number was" + str(secret))
#6-1使用按鈕得到輸入
import easygui
flavor = easygui.buttonbox("What is your favorite ice cream flavor?",
choices = ['Vanilla','Chocolate','Strawberry'])
easygui.msgbox("You picked"+ flavor)
#6-2使用選擇框得到輸入
import easygui
flavor = easygui.choicebox("What is your favorite ice cream flavor?",
choices = ['Vanilla','Chocolate','Strawberry'])
easygui.msgbox("You picked"+ flavor)
#6-3使用輸入框得到輸入
import easygui
flavor = easygui.enterbox("What's your favorite ice cream flavor?")
easygui.msgbox("You entered" + flavor)
#6-4如何建立一個預設引數
import easygui
flavor = easygui.enterbox("What's your favorite ice cream flavor?",
default = 'Vanilla')
easygui.msgbox("You entered" + flavor)
#6-5 使用easygui的猜數遊戲
import random,easygui
secret = random.randint(1,99)
guess = 0
tries = 0
easygui.msgbox("""AHOY! I'm the Dread Pirate Roberts,and I have a secret~
It's a number from 1 to 99. I'll give you 6 tries.""")
while guess != secret and tries < 6:
guess = easygui.integerbox("What's yer guess,matey?")
if not guess:break
if guess < secret:
easygui.msgbox(str(guess) + "is too low, ye scurvy dog!")
elif guess >secret:
easygui.msgbox(str(guess)+ " is too high, landlubber!")
tries = tries + 1
if guess == secret:
easygui.msgbox("Avast!Ye got it! Found my secret,ye did!secret is"+str(secret))
else:
easygui.msgbox("No more guesses! The number was" + str(secret))
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/220205/viewspace-2072716/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [Python GUI]Python內建圖形介面tkinter--入門1PythonGUI
- 26 使用者圖形介面
- Python學習之Web開發及圖形使用者介面模組!PythonWeb
- JavaGUI——Java圖形使用者介面JavaGUI
- GO-圖形使用者介面Go
- Linux之Win10-安裝子系統-GUI-介面LinuxWin10GUI
- 圖形使用者介面1:初識Walk
- linux系統中firewalld防火牆管理工具firewall-config(GUI圖形使用者介面)Linux防火牆GUI
- 【java學習】GUI 圖形程式設計JavaGUI程式設計
- 圖形使用者介面2:常用控制元件控制元件
- 課時35:圖形使用者介面入門
- Python3爬取CSDN個人部落格相關資料--新增GUI圖形化介面PythonGUI
- Matlab圖形使用者介面程式設計初級入門Matlab程式設計
- python 圖形初學Python
- Ubuntu18.04中設定使用root使用者登入圖形介面Ubuntu
- 使用SCRT+XMING 圖形介面
- Python入門教程100天:Day10-圖形使用者介面和遊戲開發Python遊戲開發
- kali linux 2020.3無法使用root使用者登陸GUI介面LinuxGUI
- python實戰GUI介面+mysqlPythonGUIMySql
- Linux無圖形介面環境使用Python+Selenium實踐 (轉載)LinuxPython
- provectus/kafka-ui: 開源Apache Kafka的Web GUI圖形介面管理工具KafkaApacheWebGUI
- Python GUI介面程式設計-初識PythonGUI程式設計
- 【Java GUI 程式設計】Swing 使用者介面開發工具包JavaGUI程式設計
- 使用Python編寫一個QQ辦公版的圖形登入介面!Python
- [開發教程]第1講:Bootstrap使用者介面與互動架構boot架構
- Qt-跨平臺的C++圖形使用者介面應用程式框架(一)QTC++框架
- 使用XMing+putty執行linux圖形介面程式Linux
- 第歸方法建立樹形圖
- 箱形圖(python畫圖)Python
- Linux中終端介面與圖形介面之間的切換關係Linux
- 一起擼個環形 Android 圖表Android
- Python學習小結—使用者輸入和While迴圈PythonWhile
- 07圖形化介面和命令列介面操作命令列
- Python常用的圖形介面程式設計框架,你知道幾個?Python程式設計框架
- TesseractOCR-GUI:基於WPF/C#構建TesseractOCR簡單易用的使用者介面GUIC#
- 卡特蘭數關於凸多邊形的證明
- python-GUI之tkinter的學習PythonGUI
- 圖形學 旋轉與投影矩陣-3矩陣
- 圖形學 旋轉與投影矩陣—2矩陣