dict={
'abc.123':01,
'def.456':02
}
那麼假設我有一個字串key='ccc.abc.123',但也想要01這個value的值,
要如何設判斷式呢?
原本是使用完全符合的
if key in list(dict.keys())
就你的問題
反過來
key = 'ccc.abc.123'
for x in dict.keys():
if x in key:
print(x)
print(dict[x])
# output: abc.123
# 01