您好,登錄后才能下訂單哦!
在寫測試腳本時,經常有一些需要變動的數據,可以單獨放在ini文件里,然后讀取傳遞給
相應的函數,這樣程序操作更靈活。具體的方法介紹如下:
文件結構:
Cofig.ini內容:
[test1]
ip = 10.10.10.10
[test2]
port = 25566
[test3]
name = www.baidu.com
直接上代碼
import configparser
conf = configparser.ConfigParser()
conf.read("cofig.ini")
#讀取配置文件里所有的Section
print(conf.sections())
#打印出test1這個section下包含key
print(conf.options("test1"))
#打印test1這個section下所有的key及對應的values
print(conf.items("test1"))
conf.add_section("add")#添加section到配置文件
conf.set("add","ip","11.11.1.1")#add section新增ip參數和值
conf.set("add","addr","shenzhen")
conf.write(open("cofig.ini","w"))#寫完數據要write一下
print(conf.items("add"))#打印剛添加的新內容
輸出的結果:
['test1', 'test2', 'test3']
['ip']
[('ip', '10.10.10.10')]
[('ip', '11.11.1.1'), ('addr', 'shenzhen')]
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。