Python 3.1 快速導覽 - 內建函數 sorted()

內建函數 (function) sorted() ,回傳將參數 (parameter) iterable 排序過的串列, key 為排序依據的函數, reverse 為是否要倒轉

函數描述
sorted(iterable[, key][, reverse])回傳將 iterable 排序過的串列


舉例示範如下
def test(x):
    return x == "1"

d = "123456789"
print(d)
print(sorted(d))
print(sorted(d, reverse = True))
print(sorted(d, key = test))

# 《程式語言教學誌》的範例程式
# http://pydoing.blogspot.com/
# 檔名:slice.py
# 功能:示範 Python 程式 
# 作者:張凱慶
# 時間:西元 2010 年 12 月


執行結果如下



中英文術語對照
函數function
參數parameter


內建函數




沒有留言: