當前位置:成語大全網 - 新華字典 - python中如何使用not in

python中如何使用not in

name=''while not name:

name=raw_input(u'請輸入姓名:')

print name

python中的not具體表示是什麽:

在python中not是邏輯判斷詞,用於布爾型True和False,not True為False,not False為True,以下是幾個常用的not的用法:

(1) not與邏輯判斷句if連用,代表not後面的表達式為False的時候,執行冒號後面的語句。比如:

a = False

if not a: (這裏因為a是False,所以not a就是True)

print "hello"

這裏就能夠輸出結果hello

(2) 判斷元素是否在列表或者字典中,if a not in b,a是元素,b是列表或字典,這句話的意思是如果a不在列表b中,那麽就執行冒號後面的語句,比如:

a = 5

b = [1, 2, 3]

if a not in b:

print "hello"

這裏也能夠輸出結果hello