Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 171 - 180 of about 186 for Set (0.195 sec.)
13.1. zlib --- gzip 互換の圧縮 — Python 3.6.5 ドキュメント 4789
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ing any more data. After calling flush() with mode set to Z_FINISH , the compress() method cannot be call ...
https://man.plustar.jp/python/library/zlib.html - [similar]
5. インポートシステム — Python 3.6.5 ドキュメント 4789
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... name ) # The import-related module attributes get set here: _init_module_attrs ( spec , module ) if spec ... le = spec . loader . load_module ( spec . name ) # Set __loader__ and __package__ if missing. else : sys ...
https://man.plustar.jp/python/reference/import.html - [similar]
11. 標準ライブラリミニツアー --- その 2 — Python 3.6.5 ドキュメント 4789
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... しています: >>> import reprlib >>> reprlib . repr ( set ( 'supercalifragilisticexpialidocious' )) "{'a', ' ... た形式に変換できます: >>> import locale >>> locale . setlocale ( locale . LC_ALL , 'English_United States.1 ...
https://man.plustar.jp/python/tutorial/stdlib2.html - [similar]
urllib パッケージを使ってインターネット上のリソースを取得するには — Python 3.6.... 4734
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » urll ... 'Request fulfilled, nothing follows' ), 205 : ( 'Reset Content' , 'Clear input form for further input.' ) ... r = urllib . request . build_opener ( handler ) # use the opener to fetch a URL opener . open ( a_url ) # ... request # timeout in seconds timeout = 10 socket . setdefaulttimeout ( timeout ) # this call to urllib.re ... est.urlopen now uses the default timeout # we have set in the socket module req = urllib . request . Requ ...
https://man.plustar.jp/python/howto/urllib2.html - [similar]
21.2. cgi --- CGI (ゲートウェイインタフェース規格) のサポート — Python 3.6.5 ド... 4734
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... に指定している userid になります。 CGI スクリプトを set-uid モードにしてはいけません。これはほとんどのシス ...
https://man.plustar.jp/python/library/cgi.html - [similar]
18.3. select --- I/O 処理の完了を待機する — Python 3.6.5 ドキュメント 4734
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ます。 ファイルディスクリプタを継承可能にするには os.set_inheritable() を使ってください。 select. poll ( ) ...
https://man.plustar.jp/python/library/select.html - [similar]
17.5. subprocess --- サブプロセス管理 — Python 3.6.5 ドキュメント 4734
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ます。 start_new_session 引数は、子プロセスの中で os.setsid() を呼ぶ過去の一般的な preexec_fn の使用方法の代 ... n が真の場合、サブプロセスの実行前に子プロセス内で setsid() システムコールが作成されます。(POSIX のみ) バ ... poll ( ) ¶ Check if child process has terminated. Set and return returncode attribute. Otherwise, return ...
https://man.plustar.jp/python/library/subprocess.html - [similar]
16.3. time --- 時刻データへのアクセスと変換 — Python 3.6.5 ドキュメント 4734
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... る環境 : Unix 。 バージョン 3.3 で追加. time. clock_settime ( clk_id , time ) ¶ Set the time of the specif ... カレンダー日付の構成要素へアクセスできます。 time. tzset ( ) ¶ ライブラリで使われている時刻変換規則をリセッ ... x 。 注釈 多くの場合、環境変数 TZ を変更すると、 tzset() を呼ばない限り localtime() のような関数の出力に影 ... です (分かりやすいように空白を入れています): std offset [ dst [ offset [, start [ / time ], end [ / time ] ...
https://man.plustar.jp/python/library/time.html - [similar]
2. 字句解析 — Python 3.6.5 ドキュメント 4734
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... いことです。ソースコード文字セット (source character set) はエンコーディング宣言で定義されます。エンコーディ ...
https://man.plustar.jp/python/reference/lexical_analysis.html - [similar]
9. クラス — Python 3.6.5 ドキュメント 4734
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... たコードに制限されています。同じ制約が getattr() と setattr() と delattr() にも適用されます。また、 __dict ... 80 ) for x in range ( 0 , 91 )} >>> unique_words = set ( word for line in page for word in line . split ( ...
https://man.plustar.jp/python/tutorial/classes.html - [similar]