#猜名字 || **複製貼上即可使用
from tkinter import *
import random
#隨機數字-開啟
def start_execute()
: global time
list1 =
['周杰倫'
,'劉德華'
,'張學友'
,'林俊傑'
,'阿信'
,'陶喆'
] a = random.
sample
(list1,1)
num[
"text"
]= a
#num["text"] = random.randint(1,1000)
time = num.
after(1
,start_execute)
#隨機數字-關閉
def stop_execute()
: num.
after_cancel
(time)
#根視窗建立
root =tk(
)root.
title
("猜靚仔"
)root.
geometry
("300x100"
)#標籤控制項建立
num =
label
(root,text =
"看看是哪個"
,font =
"微軟雅黑 30 bold"
)num.
pack()
#框架控制項建立
buttonbox =
frame
(root)
buttonbox.
pack
(pady =10)
#按鈕控制項建立
start =
button
(buttonbox,text =
"開始"
,relief =
"groove"
,command = start_execute)
start.
pack
(side = left,padx =10)
stop =
button
(buttonbox,text =
"暫停"
,relief =
"groove"
,command = stop_execute)
stop.
pack
(side = right,padx =10)
root.
mainloop
()
轉
eventlet python模組學習記錄
版本號 eventlet 0.22.1 documentation python版本 2.7.5 clientimport eventlet from eventlet.green import urllib2 匯入協程版本的urllib2 這個版本的urllib2和標準的urllib2除了gree...
2019 11 27 演算法學習記錄 猜數字
小a 和 小b 在玩猜數字。小b 每次從 1,2,3 中隨機選擇乙個,小a 每次也從 1,2,3 中選擇乙個猜。他們一共進行三次這個遊戲,請返回 小a 猜對了幾次?輸入的guess陣列為 小a 每次的猜測,answer陣列為 小b 每次的選擇。guess和answer的長度都等於3。示例 1 輸入 ...
Python有關模組學習記錄
首先安裝搭建好jupyter notebook,執行成功後的截圖如下 安裝使用步驟 ps 確定python安裝路徑和安裝路徑裡面scripts資料夾路徑已經配置到環境變數中去,即pip所在路徑已經配置到環境變數中去 以下說明是在windows環境下 安裝 pip install jupyter no...