Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 98 for time (0.029 sec.)
8.1. datetime --- 基本的な日付型および時間型 — Python 3.6.5 ドキュメント 13694
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リ » 8. データ型 » 8.1. datetime --- 基本的な日付型および時間型 ¶ ソースコード: Lib ... /datetime.py datetime モジュールでは、日付や時間データを簡単 ... 率的な取り出しに焦点を絞っています。機能については、 time および calendar も参照してください。 "naive" と "a ... ブジェクトを必要とするアプリケーションのために、 datetimetime オブジェクトは追加のタイムゾーン情報の属性 ...
https://man.plustar.jp/python/library/datetime.html - [similar]
16.3. time --- 時刻データへのアクセスと変換 — Python 3.6.5 ドキュメント 13093
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... » 16. 汎用オペレーティングシステムサービス » 16.3. time --- 時刻データへのアクセスと変換 ¶ このモジュールで ... まざまな関数を提供します。関連した機能について、 datetime , calendar モジュールも参照してください。 このモジ ... れたプラットフォームでエポックが何なのかを知るには、 time.gmtime(0) の値を見てください。 エポック秒 ( second ... るので、一般的に 2000 年問題は存在しません。関数 strptime() は %y 書式コードが与えられた時に 2 桁の年表記を解 ...
https://man.plustar.jp/python/library/time.html - [similar]
17.6. sched --- イベントスケジューラ — Python 3.6.5 ドキュメント 11943
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 実装するクラスを定義します: class sched. scheduler ( timefunc=time.monotonic , delayfunc=time.sleep ) ¶ sche ... 世界" を実際に扱うための2つの関数を必要とします --- timefunc は引数なしで呼ばれて 1 つの数値を返す callable ... りません (戻り値は任意の単位で「時間」を表します)。 time.monotonic が利用出来ない場合、 timefunc のデフォル ... トには time.time が代わりに使われます。 delayfunc は 1 つの引数 ...
https://man.plustar.jp/python/library/sched.html - [similar]
19.1.14. email.utils: 多方面のユーティリティ — Python 3.6.5 ドキュメント 8990
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... vided in the email.utils module: email.utils. localtime ( dt=None ) ¶ Return local time as an aware dateti ... bject. If called without arguments, return current time. Otherwise dt argument should be a datetime instan ... ce, and it is converted to the local time zone according to the system time zone database. I ... dt.tzinfo is None ), it is assumed to be in local time. In this case, a positive or zero value for isdst ...
https://man.plustar.jp/python/library/email.util.html - [similar]
21.20. uuid --- UUID objects according to RFC 4122 — Python 3.6.5 ドキュメント 8716
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... bytes_le argument, a tuple of six integers (32-bit time_low , 16-bit time_mid , 16-bit time_hi_version , 8 ... を持つ)のUUID。 UUID. bytes_le ¶ 16 バイト文字列( time_low , time_mid , time_hi_version をリトルエンディア ... の派生した属性としても取得可能です: フィールド 意味 time_low UUID の最初の 32 ビット time_mid UUID の次の 1 ... 6 ビット time_hi_version UUID の次の 16 ビット clock_seq_hi_vari ...
https://man.plustar.jp/python/library/uuid.html - [similar]
DateTime オブジェクト — Python 3.6.5 ドキュメント 8585
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... » 具象オブジェクト (concrete object) レイヤ » DateTime オブジェクト ¶ datetime モジュールでは、様々な日付 ... 示す関数を使う場合には、あらかじめヘッダファイル datetime.h をソースに include し ( Python.h はこのファイルを ... include しません)、 PyDateTime_IMPORT マクロを、通常はモジュール初期化関数から、起 ... す。このマクロは以下のマクロで使われる静的変数 PyDateTimeAPI に C 構造体へのポインタを入れます。 型チェックマ ...
https://man.plustar.jp/python/c-api/datetime.html - [similar]
27.5. timeit --- 小さなコード断片の実行時間計測 — Python 3.6.5 ドキュメント 8350
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リ » 27. デバッグとプロファイル » 27.5. timeit --- 小さなコード断片の実行時間計測 ¶ ソースコード ... : Lib/timeit.py このモジュールは小さい Python コードをの時間を ... 式の時間を測定する方法を示しています。 $ python3 -m timeit '"-".join(str(n) for n in range(100))' 10000 loo ... ps, best of 3: 30.2 usec per loop $ python3 -m timeit '"-".join([str(n) for n in range(100)])' 10000 l ...
https://man.plustar.jp/python/library/timeit.html - [similar]
27.4. Python プロファイラ — Python 3.6.5 ドキュメント 7840
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ークのためのものではありません (ベンチマーク用途には timeit のほうが正確な計測結果を求められます)。これは Py ... 0.002 seconds Ordered by : standard name ncalls tottime percall cumtime percall filename : lineno ( functi ... 。列の見出しは以下を含みます: ncalls 呼び出し回数 tottime 与えられた関数に消費された合計時間 (sub-function の ... び出しで消費された時間は除外されています) percall tottime を ncalls で割った値 cumtime この関数と全ての subf ...
https://man.plustar.jp/python/library/profile.html - [similar]
21.15. imaplib --- IMAP4 プロトコルクライアント — Python 3.6.5 ドキュメント 7566
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... INTERNALDATE string and return corresponding local time. The return value is a time.struct_time tuple or N ... を個々のフラグからなるタプルに変換します。 imaplib. Time2Internaldate ( date_time ) ¶ Convert date_time to ... H:MM:SS +HHMM" (including double-quotes). The date_time argument can be a number (int or float) representi ... ng seconds since epoch (as returned by time.time() ), a 9-tuple representing local time an ins ...
https://man.plustar.jp/python/library/imaplib.html - [similar]
23.2. locale --- 国際化サービス — Python 3.6.5 ドキュメント 7252
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ¶ 日付と時刻をロケール特有の方法で表現するために、 time.strftime() の書式文字列として用いることのできる文字 ... D_FMT ¶ 日付をロケール特有の方法で表現するために、 time.strftime() の書式文字列として用いることのできる文字 ... T_FMT ¶ 時刻をロケール特有の方法で表現するために、 time.strftime() の書式文字列として用いることのできる文字 ... FMT_AMPM ¶ 時刻を午前/午後の書式で表現するために、 time.strftime() の書式文字列として用いることのできる文字 ...
https://man.plustar.jp/python/library/locale.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT