1
如何在ConfigObj中寫評論?有什麼辦法可以在python中使用configobj寫評論
我使用python 2.4.3和4.7 ConfigObj
我沒有看到ConfigObj文檔中的任何方法。
如何在ConfigObj中寫評論?有什麼辦法可以在python中使用configobj寫評論
我使用python 2.4.3和4.7 ConfigObj
我沒有看到ConfigObj文檔中的任何方法。
This文檔將幫助你。
TL;博士:
example = StringIO('''
[test]
opt1 = 1
# this is a comment
; and so is this
opt2 = 2''')
safeconfigparser.readfp(example)
print safeconfigparser.items('test')
希望這會幫助你,Yahli。