我只寫一個函數(shù):
成都創(chuàng)新互聯(lián)堅持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都做網(wǎng)站、網(wǎng)站建設(shè)、外貿(mào)營銷網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時代的忻州網(wǎng)站設(shè)計、移動媒體設(shè)計的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
def littleFunc():
data =[] #初始化列表
for i in range(9):#一個for循環(huán)
num = int(raw_input("input a number please: "))#控制輸入轉(zhuǎn)為int
data.append(num)#放入列表
data.sort()#排序
print data#輸出
python的程序擴展名是.py
程序執(zhí)行結(jié)果:
littleFunc()
input a number please: 1
input a number please: 3
input a number please: 5
input a number please: 7
input a number please: 8
input a number please: 4
input a number please: 9
input a number please: 6
input a number please: 2
[1, 2, 3, 4, 5, 6, 7, 8, 9]
進(jìn)程間同步Python有asyncio標(biāo)準(zhǔn)庫,多進(jìn)程有multiprocessing庫,如果是主機間通信需要使用網(wǎng)絡(luò)協(xié)議socket、http等庫。
可以參考Python文檔的
The Python Standard Library - 18. Interprocess
Communication and Networking -
18.5. asyncio – Asynchronous
I/O, event loop, coroutines and tasks
用tkinter的button組件。
設(shè)定好字體大小size(int類型),在循環(huán)內(nèi)部(以while舉例)加組件:
xunhuan=1 # 控制循環(huán)的開始與結(jié)束
# 定義開始循環(huán)
def start():
global xunhuan
xunhuan = 1
# 結(jié)束
def end():
global xunhuan
xunhuan = 0
size=(字的大小)
# 現(xiàn)在導(dǎo)庫
inport tkinter as tk # 輸入方便
window = tk.Tk()
s = tk.Button(window, text = "開始" , command = start) # 開始按鈕
e = tk.Button(window , text = "停止" , command = end) # 結(jié)束按鈕
# 繪制按鈕
s.pack()
e.pack()
# 下面是循環(huán)
while True:
if xunhuan:
...(循環(huán)內(nèi)部要做的事)
window.mainloop() # 在tkinter中,這行代碼一定要加
i=0
while?True:
a=input()
if?a==27:
break
i=i+1
print?i