當前位置:成語大全網 - 英語詞典 - Python判斷壹個字符串X是否存在於詞典{}中

Python判斷壹個字符串X是否存在於詞典{}中

“{('a','b'),(‘A’,‘B’)}”

首先,這個裏面包含錯誤的語法,這個結構也不叫字典,而是SET集合。

直接in不行,需要轉換

==========================

#python 3.2版代碼

import functools

data_set={('A', 'B'), ('a', 'b')}

data_list=functools.reduce(lambda x,y: list(x+y), data_set)

t='c'

print(t+('在其中' if t in data_list else '不在'))

t='a'

print(t+('在其中' if t in data_list else '不在'))

================

輸出:

c不在

a在其中

=====

ps加分,0分不好