10
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

INIファイル読み書きで大文字/小文字を区別する

Last updated at Posted at 2014-05-15

Python標準のINIファイルパーサ既定動作では、オプション名の大文字/小文字を区別しない(出力時は小文字へ自動変換される)。この既定動作を変更し、大文字/小文字を区別する動作に変更する方法。

import ConfigParser # Python 2.x
import configparser # Pyrhon 3.x

cfgparser = ConfigParser()
cfgparser.optionxform = str
10
8
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?