簡體   English   中英

python ConfigParser模塊

[英]python ConfigParser module

我有以下ini文件

[Section]
value=test

當我使用ConfigParser模塊時:

import ConfigParser
config = ConfigParser.ConfigParser()
config.read('config.ini')
str=config.get('Section', 'value')

if str == 'test':
    print 1

else :
    print 0

它總是打印0有人可以幫忙嗎

嘗試

print str

看看值是多少

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM