chatgpt大模型
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
238 B

  1. import configparser
  2. #加载配置文件
  3. def load_config():
  4. configFile = './config.ini'
  5. # 创建配置文件对象
  6. con = configparser.ConfigParser()
  7. # 读取文件
  8. con.read(configFile, encoding='utf-8')
  9. return con