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

內建函數 (function) set() ,將參數 (parameter) 迭代器 iterable 建立為 set 型態的物件

函數描述
set([iterable])將迭代器建立為 set 型態的物件


舉例示範如下
a = "12345"
b = set(a)
print(type(b))
print(b)

a = [1, 2, 3, 4, 5]
b = set(a)
print(type(b))
print(b)

a = {1:"a", 2:"b", 3:"c"}
b = set(a)
print(type(b))
print(b)

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


執行結果如下



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


內建函數




沒有留言: