Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 39 for locale (0.030 sec.)
23.2. locale --- 国際化サービス — Python 3.6.5 ドキュメント 17134
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リ » 23. 国際化 » 23.2. locale --- 国際化サービス ¶ ソースコード: Lib/locale.py l ... で特定の地域文化に関係する部分を扱うことができます。 locale モジュールは、 _locale を被うように実装されており、 ... ANSI C ロケール実装を使っている _locale が利用可能なら、こちらを先に使うようになっています ...locale モジュールでは以下の例外と関数を定義しています: ex ...
https://man.plustar.jp/python/library/locale.html - [similar]
11. 標準ライブラリミニツアー --- その 2 — Python 3.6.5 ドキュメント 8724
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... tring with newlines to separate the wrapped lines. locale モジュールは、文化により異なるデータ表現形式のデー ... タベースにアクセスします。 locale の format() 関数の grouping 属性を使えば、数値を適 ... によりグループ化された形式に変換できます: >>> import locale >>> locale . setlocale ( locale . LC_ALL , 'Englis ... es.1252' ) 'English_United States.1252' >>> conv = locale . localeconv () # get a mapping of conventions >>> ...
https://man.plustar.jp/python/tutorial/stdlib2.html - [similar]
6.2. re --- 正規表現操作 — Python 3.6.5 ドキュメント 8489
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... に指定できますが、それらにマッチする文字は ASCII か LOCALE のどちらか有効にされているモードに依存します。 範囲 ... lag. Word boundaries are determined by the current locale if the LOCALE flag is used. Inside a character ran ... lag. Word boundaries are determined by the current locale if the LOCALE flag is used. \d ユニコード (str) パ ... コアにマッチします。これは [a-zA-Z0-9_] と等価です。 LOCALE が使われている場合は、現在のロケールで英数字と見な ...
https://man.plustar.jp/python/library/re.html - [similar]
オペレーティングシステム関連のユーティリティ — Python 3.6.5 ドキュメント 8426
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... int) の typedef による別名です。 wchar_t* Py_DecodeLocale ( const char* arg , size_t *size ) ¶ surrogateesca ... UTF-8 on macOS and Android; ASCII if the LC_CTYPE locale is "C" , nl_langinfo(CODESET) returns the ASCII en ... functions use the ISO-8859-1 encoding. the current locale encoding ( LC_CTYPE locale). Return a pointer to a ... キャラクター文字列をバイト文字列に戻すには Py_EncodeLocale() 関数を使ってください。 参考 PyUnicode_DecodeFSDe ...
https://man.plustar.jp/python/c-api/sys.html - [similar]
8.2. calendar --- 一般的なカレンダーに関する関数群 — Python 3.6.5 ドキュメント 8363
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... デフォルトのエンコーディングです)。 class calendar. LocaleTextCalendar ( firstweekday=0 , locale=None ) ¶ この ... 文字列はユニコードとして返されます。 class calendar. LocaleHTMLCalendar ( firstweekday=0 , locale=None ) ¶ この ... () と formatmonthname() メソッドは、一時的に現在の locale を指定された locale に変更します。現在の locale...
https://man.plustar.jp/python/library/calendar.html - [similar]
23.1. gettext --- 多言語対応に関する国際化サービス — Python 3.6.5 ドキュメント 8175
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... くなるでしょう。 gettext. bindtextdomain ( domain , localedir=None ) ¶ domain をロケールディレクトリ localedi ... するバイナリ形式の .mo ファイルを探しに、(Unixでは) localedir/language/LC_MESSAGES/domain.mo というパスを見に ... _ALL 、 LC_MESSAGES 、 LANG の中から検索されます。 localedir が省略されるか None の場合、現在 domain に対応付 ... _() として配置できます。 gettext. find ( domain , localedir=None , languages=None , all=False ) ¶ この関数は ...
https://man.plustar.jp/python/library/gettext.html - [similar]
What's New in Python 2.4 — Python 3.6.5 ドキュメント 8175
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... line imports は Dima Dorfman により実装。 PEP 331: Locale に依存しない Float/String 変換 ¶ locale モジュール ... いることに原因がありました。 Not setting the numeric locale caused trouble for extensions that used third-part ... s, however, because they wouldn't have the correct locale set. The motivating example was GTK+, whose user i ... widgets weren't displaying numbers in the current locale. この PEP に記述された解法は、ロケール設定を無視し ...
https://man.plustar.jp/python/whatsnew/2.4.html - [similar]
正規表現 HOWTO — Python 3.6.5 ドキュメント 8113
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規 ... lines. IGNORECASE , I Do case-insensitive matches. LOCALE , L Do a locale-aware match. MULTILINE , M Multi-l ... e mode). This lowercasing doesn't take the current locale into account; it will if you also set the LOCALE f ... lag. L LOCALE Make \w , \W , \b , \B and case-insensitive matchi ... ng dependent on the current locale instead of the Unicode database. Locales are a fea ...
https://man.plustar.jp/python/howto/regex.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 8113
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ly. (Contributed by Robert Collins in bpo-17911 .) locale ¶ A new delocalize() function can be used to conve ... g the LC_NUMERIC settings into account: >>> import locale >>> locale . setlocale ( locale . LC_NUMERIC , 'de ... _DE.UTF-8' ) 'de_DE.UTF-8' >>> locale . delocalize ( '1.234,56' ) '1234.56' >>> locale . ... setlocale ( locale . LC_NUMERIC , 'en_US.UTF-8' ) 'en_US.UTF ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 7815
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 決定するようになりました。これは、アプリケーションは locale.setlocale() 関数を呼び出して、Unicode 文字列をシス ... のデフォルトエンコーディングを利用しています: import locale locale . setlocale ( locale . LC_ALL , '' ) code = ... locale . getpreferredencoding () この後、 str.encode() を ... では、そのロケールのエンコーディングが使用されます ( locale.getpreferredencoding() 参照)。 バージョン 3.3 で追 ...
https://man.plustar.jp/python/library/curses.html - [similar]
PREV 1 2 3 4 NEXT