猜數字的介面版
import tkinter
import tkinter.messagebox
root = tkinter.Tk()
root.title('猜數字')
shuzi=tkinter.StringVar()
Label = tkinter.Label(root,text="請輸入1到100以內的整數")
Label.place(x=20,y=10,width=140,height=40)
sg = tkinter.StringVar(root)
Entrysg =tkinter.Entry(root,width=50,textvariable=sg)
Entrysg.place(x=160,y=20,width=50,height=20)
def caishuzi():
import random
n=random.randint(1,100)
i=5
while i>0:
x=int(Entrysg.get())
if x < n:
tkinter.messagebox.showinfo(title="結果",message="小了")
i=i-1
elif x> n:
tkinter.messagebox.showinfo(title="結果",message="大了")
i=i-1
else:
tkinter.messagebox.showinfo(title="結果",message="恭喜你猜對了")
break
else:
tkinter.messagebox.showinfo(title="結果",message="次數已用完")
return
button =tkinter.Button(root,text="測試",command=caishuzi)
button.place(x=100,y=70,width=30,height=20)
root.mainloop()
相關文章
- 猜數字遊戲遊戲
- Shell猜數字遊戲遊戲
- 猜數字小遊戲遊戲
- 【Java】——猜數字遊戲Java遊戲
- 演算法 猜數字演算法
- 簡單的C# 猜數字遊戲C#遊戲
- 使用者猜數字遊戲遊戲
- leedcode-猜數字大小
- 一個猜數字輸贏的小遊戲遊戲
- 實驗任務四:登入介面、實驗任務五:猜數字
- 以太坊智慧合約-猜數字
- C#小遊戲-------猜數字 (轉)C#遊戲
- L1-056 猜數字 分數 20
- 一個拖拉且錯誤的猜數字程式
- linux實現猜數字小遊戲Linux遊戲
- 7-24 猜數字遊戲 (15分)遊戲
- C#之簡易猜數字遊戲C#遊戲
- 第三章 猜數字遊戲遊戲
- [TJOI2009] 猜數字
- 猜字遊戲遊戲
- 【python小練習】簡單的猜數字遊戲Python遊戲
- LeetCode-374-猜數字大小LeetCode
- L1-056 猜數字 (20分) C++C++
- Rust學習之旅1——寫個猜數字遊戲Rust遊戲
- Shell指令碼——Linux系統中的時間猜數字指令碼Linux
- 以猜數字遊戲引出的分治演算法的理解與思考遊戲演算法
- 透過編寫“猜數字”遊戲來學習 Awk遊戲
- LeetCode 299 猜數字遊戲 Java實現LeetCode遊戲Java
- 猜數記---BCWIPE註冊半破解 (25千字)
- C語言初學者(自學)做的一個猜數字小遊戲C語言遊戲
- 由一個C++版本猜數字遊戲引起的效率問題C++遊戲
- LeetCode每日一題: 猜數字大小(No.374)LeetCode每日一題
- 【Java基礎教程】用Java實現猜數字小遊戲Java遊戲
- 猜你需要的免費api介面彙總API
- JavaScript學習 猜數字小遊戲帶你學習for迴圈,變數,方法的定義JavaScript遊戲變數
- [CareerCup] 17.5 Game of Master Mind 猜字遊戲GAMAST遊戲
- 支付寶介面的數字簽名
- 猜數遊戲--C語言描述遊戲C語言