#Python(065)變數值None
'''
程式設計做測試可使用,
布林值為False。
'''
i = None
print(type(i))
if not i:print('尚未定義i')
if i:print('i已定義')
else:print('尚未定義i')
j = 1
print(type(j))
if not j:print('尚未定義j')
if j:print('j已定義')
else:print('尚未定義j')
結果為:
文章標籤
全站熱搜
留言列表