Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 101 - 110 of about 167 for list (0.417 sec.)
6.2. re --- 正規表現操作 — Python 3.6.5 ドキュメント 5159
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... on-overlapping matches of pattern in string , as a list of strings. The string is scanned left-to-right, a ... r more groups are present in the pattern, return a list of groups; this will be a list of tuples if the pa ... ダム化します。 >>> def repl ( m ): ... inner_word = list ( m . group ( 2 )) ... random . shuffle ( inner_wo ...
https://man.plustar.jp/python/library/re.html - [similar]
18.8. signal --- 非同期イベントにハンドラを設定する — Python 3.6.5 ドキュメント 5159
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... CK , SIG_UNBLOCK , SIG_SETMASK ) related constants listed below were turned into enums . getsignal() , pth ... B' % len(data), data) to decode the signal numbers list. スレッドが有効な場合、この関数はメインスレッドから ... accepts the signal and removes it from the pending list of signals. If one of the signals in sigset is alr ...
https://man.plustar.jp/python/library/signal.html - [similar]
26.4. unittest --- ユニットテストフレームワーク — Python 3.6.5 ドキュメント 5159
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... す。 さらに、 first と second が厳密に同じ型であり、list、tuple、dict、set、frozenset もしくは str のいずれか ... ことを検証します。このメソッドは assertEqual(Counter(list(first)), Counter(list(second))) と同等に振る舞うこ ... 3.1 assertSequenceEqual(a, b) シーケンス 3.1 assertListEqual(a, b) リスト 3.1 assertTupleEqual(a, b) タプル ... ドは直接 assertEqual() からは呼ばれませんが、 assertListEqual() と assertTupleEqual() の実装で使われています ...
https://man.plustar.jp/python/library/unittest.html - [similar]
13. さあ何を? — Python 3.6.5 ドキュメント 5159
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... python に投稿するか、またはメーリングリスト python-list @ python . org に送ることができます。ニュースグルー ...
https://man.plustar.jp/python/tutorial/whatnow.html - [similar]
文字列の変換と書式化 — Python 3.6.5 ドキュメント 5090
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... char *str , size_t size , const char *format , va_list va ) ¶ 書式文字列 format と可変長引数リスト va から ...
https://man.plustar.jp/python/c-api/conversion.html - [similar]
Set オブジェクト — Python 3.6.5 ドキュメント 5090
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ect *set ) ¶ set を空にします。 int PySet_ClearFreeList ( ) ¶ free list をクリアします。解放された要素数を ...
https://man.plustar.jp/python/c-api/set.html - [similar]
正規表現 HOWTO — Python 3.6.5 ドキュメント 5090
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規 ... of the matches for a pattern. findall() returns a list of matching strings: >>> p = re . compile ( r '\d+ ... ラッシュ感染症 . findall() has to create the entire list before it can be returned as the result. The findi ... string apart wherever the RE matches, returning a list of the pieces. It's similar to the split() method ...
https://man.plustar.jp/python/howto/regex.html - [similar]
21.2. cgi --- CGI (ゲートウェイインタフェース規格) のサポート — Python 3.6.5 ド... 5090
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 前をもったフィールドが複数含まれているのなら) 、 getlist() メソッドを使ってください。これは常に値のリストを ... コンマで分割された文字列にします: value = form . getlist ( "username" ) usernames = "," . join ( value ) フ ... Storage クラスのインスタンスになります。この場合、 list 、 file 、および filename 属性は常に None になりま ... form . getvalue ( "item" ) if isinstance ( item , list ): # The user is requesting more than one item. el ...
https://man.plustar.jp/python/library/cgi.html - [similar]
8. データ型 — Python 3.6.5 ドキュメント 5090
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... いくつかの組み込みデータ型があります。特に、 dict 、 list 、 set 、 frozenset 、そして tuple があります。 st ... の例とレシピ 8.3.7. UserDict オブジェクト 8.3.8. UserList オブジェクト 8.3.9. UserString オブジェクト 8.4. c ...
https://man.plustar.jp/python/library/datatypes.html - [similar]
5. 組み込み例外 — Python 3.6.5 ドキュメント 5090
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 発生すると送出されます。 from ... import の中の"from list" (訳注: ... の部分)の名前が見つからないときにも送出 ... 数が渡された場合は (例えば、 int が期待されるのに、 list`が渡された) :exc:`TypeError となるべきです。しかし ... NotADirectoryError ¶ ディレクトリ以外のものに ( os.listdir() などの) ディレクトリ操作が要求された場合に送出 ...
https://man.plustar.jp/python/library/exceptions.html - [similar]
PREV 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 NEXT