Learning to Live
It's never too late.
2016年5月22日 星期日
用變數名判斷變數是否存在
想確定特定的變數是否已經被建立起來,可以用dir()取得當下local scope中所有變數名以判斷之。
Untitled
In [3]:
print
(
'x'
in
dir
())
x
=
5
print
(
'x'
in
dir
())
False True
較新的文章
較舊的文章
首頁
訂閱:
文章 (Atom)