<legend id='k8Upt'><style id='k8Upt'><dir id='k8Upt'><q id='k8Upt'></q></dir></style></legend>

      <tfoot id='k8Upt'></tfoot>

      <small id='k8Upt'></small><noframes id='k8Upt'>

      • <bdo id='k8Upt'></bdo><ul id='k8Upt'></ul>

      1. <i id='k8Upt'><tr id='k8Upt'><dt id='k8Upt'><q id='k8Upt'><span id='k8Upt'><b id='k8Upt'><form id='k8Upt'><ins id='k8Upt'></ins><ul id='k8Upt'></ul><sub id='k8Upt'></sub></form><legend id='k8Upt'></legend><bdo id='k8Upt'><pre id='k8Upt'><center id='k8Upt'></center></pre></bdo></b><th id='k8Upt'></th></span></q></dt></tr></i><div id='k8Upt'><tfoot id='k8Upt'></tfoot><dl id='k8Upt'><fieldset id='k8Upt'></fieldset></dl></div>

        如何用 Python3 读写 INI 文件?

        时间:2024-04-21

        • <small id='vZq5b'></small><noframes id='vZq5b'>

          • <bdo id='vZq5b'></bdo><ul id='vZq5b'></ul>

                <tbody id='vZq5b'></tbody>
              <tfoot id='vZq5b'></tfoot>

                  <legend id='vZq5b'><style id='vZq5b'><dir id='vZq5b'><q id='vZq5b'></q></dir></style></legend>
                  <i id='vZq5b'><tr id='vZq5b'><dt id='vZq5b'><q id='vZq5b'><span id='vZq5b'><b id='vZq5b'><form id='vZq5b'><ins id='vZq5b'></ins><ul id='vZq5b'></ul><sub id='vZq5b'></sub></form><legend id='vZq5b'></legend><bdo id='vZq5b'><pre id='vZq5b'><center id='vZq5b'></center></pre></bdo></b><th id='vZq5b'></th></span></q></dt></tr></i><div id='vZq5b'><tfoot id='vZq5b'></tfoot><dl id='vZq5b'><fieldset id='vZq5b'></fieldset></dl></div>
                  本文介绍了如何用 Python3 读写 INI 文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我需要用 Python3 读取、写入和创建一个 INI 文件.

                  I need to read, write and create an INI file with Python3.

                  FILE.INI

                  default_path = "/path/name/"
                  default_file = "file.txt"
                  

                  Python 文件:

                  #    Read file and and create if it not exists
                  config = iniFile( 'FILE.INI' )
                  
                  #    Get "default_path"
                  config.default_path
                  
                  #    Print (string)/path/name
                  print config.default_path
                  
                  #    Create or Update
                  config.append( 'default_path', 'var/shared/' )
                  config.append( 'default_message', 'Hey! help me!!' )
                  

                  已更新 FILE.INI

                  UPDATED FILE.INI

                  default_path    = "var/shared/"
                  default_file    = "file.txt"
                  default_message = "Hey! help me!!"
                  

                  推荐答案

                  可以从以下内容开始:

                  import configparser
                  
                  config = configparser.ConfigParser()
                  config.read('FILE.INI')
                  print(config['DEFAULT']['path'])     # -> "/path/name/"
                  config['DEFAULT']['path'] = '/var/shared/'    # update
                  config['DEFAULT']['default_message'] = 'Hey! help me!!'   # create
                  
                  with open('FILE.INI', 'w') as configfile:    # save
                      config.write(configfile)
                  

                  您可以在 官方 configparser 文档中找到更多信息.

                  You can find more at the official configparser documentation.

                  这篇关于如何用 Python3 读写 INI 文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:pip 或 pip3 为 Python 3 安装包? 下一篇:找不到满足要求 tensorflow 的版本

                  相关文章

                1. <small id='vd1vI'></small><noframes id='vd1vI'>

                  <tfoot id='vd1vI'></tfoot>

                  <legend id='vd1vI'><style id='vd1vI'><dir id='vd1vI'><q id='vd1vI'></q></dir></style></legend>

                      <bdo id='vd1vI'></bdo><ul id='vd1vI'></ul>

                      <i id='vd1vI'><tr id='vd1vI'><dt id='vd1vI'><q id='vd1vI'><span id='vd1vI'><b id='vd1vI'><form id='vd1vI'><ins id='vd1vI'></ins><ul id='vd1vI'></ul><sub id='vd1vI'></sub></form><legend id='vd1vI'></legend><bdo id='vd1vI'><pre id='vd1vI'><center id='vd1vI'></center></pre></bdo></b><th id='vd1vI'></th></span></q></dt></tr></i><div id='vd1vI'><tfoot id='vd1vI'></tfoot><dl id='vd1vI'><fieldset id='vd1vI'></fieldset></dl></div>