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

內建函數 (function) type() ,回傳參數 (parameter) object 的型態名稱

函數描述
type(object)回傳 object 的型態名稱


舉例示範如下
print(type(0))
print(type(0.0))
print(type(0j))
print(type("0"))
print(type((0,)))
print(type([0]))
print(type({0}))
print(type({0:0}))

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


執行結果如下



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


內建函數




沒有留言: