ptint(type(variable)) //檢視python的變數屬於哪乙個資料型別
variable = dict(a=1,b=2)
print(dir(variable)) //檢視乙個變數的具體方法
//ctrl + 左鍵 可檢視原始碼
>>> m = dict(a=1,b=2)
>>> help(m.get)
help on built-in function get:
get(...)
d.get(k[,d]) -> d[k] if k in d, else d. d defaults to none.
>>>
需求:
age = 18
print('age: ' + age)
執行上述**會報錯,因為age是整形,無法和字串一起輸出,所以在輸出前要講其變為字串
age = 18
print('age: ' + str(age))
這樣既可轉換
int() str() lsit() tuple() dict()
python 檢視幫助
help 一 不同的環境下 1.互動模式下 命令列 檢視模組的幫助資訊 import pickle help pickle 可以看到詳細資訊,more 上回車,滾動資訊。q 退出幫助 2.ide裡,需要做乙個輸出。import pickle print help pickle 二 檢視不同屬性的幫助...
Python幫助文件的檢視
python擁有兩個指令可以檢視幫助文件 分別為help 和 dir指令 對於help指令 1.help可用於檢視import的模組的資訊 import math help math 2.對於常用的一些內建物件 函式檢視 help str help str.upper 對於dir指令 1.列出模組定...
Python怎麼檢視幫助資訊
help 一 不同的環境下 1.互動模式下 命令列 檢視模組的幫助資訊 python view plain copy print?import pickle help pickle 可以看到詳細資訊,more 上回車,滾動資訊。q 退出幫助 2.ide裡,需要做乙個輸出。python view pl...