91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

configparser在python3中怎么用

發布時間:2021-10-18 11:57:13 來源:億速云 閱讀:177 作者:小新 欄目:編程語言

這篇文章主要介紹了configparser在python3中怎么用,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

1.創建configparser文件

import configparser
    #導入模塊
config = configparser.ConfigParser()  #注意大小寫與()
config['DEFAULT'] = {'Server': '45', 'Compression': 'yes'}
config['server'] = {'deletehq':'0',
                    'localtime':'20180706',
                    'port':'22'}
config['system'] = {'market64':'xiadan1.exe',
                    'market128':'xiadan2.exe',
                    'market256':'xiadan3.exe' }
config['client'] = {}

with open('configTest.ini', 'w') as configfile:
    config.write(configfile)

或者通過字典創建

config = configparser.ConfigParser()
config.read_dict(   {
                'section1': {'key1': 'value1',
                                    'key2': 'value2',
                                    'key3': 'value3'},
                'section2': {'keyA': 'valueA',
                                 'keyB': 'valueB',
                                 'keyC': 'valueC'},
                 'section3': {'foo': 'x',
                                    'bar': 'y',
                                  'fun: 'z'}
                                    }   )
with open('configTest1.ini', 'w') as configfile:
    config.write(configfile)

2.讀取配置文件

config.read('configTest.ini')
[DEFAULT]
server = 45
compression = yes

[server]
deletehq = 0
localtime = 20180706
port = 22

[system]
market64 = xiadan1.exe
market128 = xiadan2.exe
market256 = xiadan3.exe

[client]

3.讀取操作

獲取所有sections
print(config.sections())
['server', 'system', 'client']

獲取指定 section 的 keys & values
print(config.items('system'))
[('server', '45'), ('compression', 'yes'), ('market64', 'xiadan1.exe'), ('market128', 'xiadan2.exe'), ('market256', 'xiadan3.exe')]  # 注意items()返回的字符串會全變成小寫

獲取指定 section 的 keys
print(config.options('system'))
['market64', 'market128', 'market256', 'server', 'compression'] #會打印default中的keys

獲取指定 key 的 value
print(config['system']['market64'])
xiadan1.exe

4.檢查

‘section’ in config

‘option’ in config['section']

config.has_section['section']
config.hais_option['section','option']

5.添加

config.add_section('section4') 
config.set('section4','key1','value1')
config.write(open('configTest1.ini','w'))  #寫入

[section4]
key1 = value1

6.刪除

config.remove_option('section4','key1') #刪除option
config.remove_section('section4') #刪除section

7.[DEFAULT]
[DEFAULT] 一般包含 ini 格式配置文件的默認項,所以 configparser 部分方法會自動跳過這個 section 。 sections() 是獲取不到的,還有刪除方法對 [DEFAULT] 也無效,但指定刪除和修改 [DEFAULT] 里的 keys & values 是可以的,還有個特殊的是,has_section() 也無效,可以和 in 區別使用。

感謝你能夠認真閱讀完這篇文章,希望小編分享的“configparser在python3中怎么用”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

巨鹿县| 水城县| 伊吾县| 喀喇沁旗| 阿拉尔市| 桂林市| 泽州县| 湘潭市| 甘肃省| 南城县| 大理市| 察隅县| 牟定县| 斗六市| 凤城市| 景德镇市| 栾川县| 焦作市| 乐清市| 洪泽县| 隆化县| 图木舒克市| 石门县| 永康市| 河间市| 东台市| 墨玉县| 宿州市| 加查县| 厦门市| 石首市| 拉孜县| 新营市| 绩溪县| 江安县| 彰化县| 额尔古纳市| 肇庆市| 贡觉县| 阿克陶县| 邮箱|