#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')

 

結果為:

image

arrow
arrow
    文章標籤
    Python None
    全站熱搜
    創作者介紹
    創作者 愛學習 的頭像
    愛學習

    愛學習

    愛學習 發表在 痞客邦 留言(0) 人氣()