我想從iniFile
過濾字符串,並把它變成一個名爲iniConf
字典:我該怎麼做與篩選器列表字符串過濾器在python
iniFile ='''
conf = test.ini
\# conf = test2.ini
conf_type = single
\#conf_type = multi
'''
infilter = ['conf', 'conf_type'] # to use
exfilter = ['#', 'multi'] # to skip
過濾後,我想
iniConf = {'conf':'test.ini', 'conf_type':'single'}
你忽略了問一個問題。請添加一個,確保它不只是「我該怎麼做」。 – jonrsharpe
對不起,這取決於我可憐的英語..T.T – gear4001
請編輯問題,提供您已編寫的代碼到目前爲止,確切地說是什麼問題。錯誤(提供完整的追溯)?意想不到的產出(提供投入,預期和實際產出)? – jonrsharpe