總網頁瀏覽量

2017年12月15日 星期五

泡沫排序法

簡單的小程式,可列出「正向排序」與「反向排序」
程式碼:
import time
li=input("請輸入要排序的數(格式[1,2,3]):")
li=eval(li)
b=sorted(li)
c=sorted(li,reverse=True)
print("由小到大排列",b)
print("由大到小排列",c)
time.sleep(8)      

執行檔:
https://drive.google.com/file/d/1_02QJwUDq3znr1Ds2y9KGItlCCp4-Joh/view?usp=sharing

沒有留言:

張貼留言