mktime(), tm_isdst may be set to 1 when daylight savings time is in effect, and 0 when it is not. A value of -1 indicates that this is not known, and will usually result in the correct state being filled in. When a tuple with an incorrect length is passed to a function expecting a struct_time, or having elements of the wrong type, a TypeErrorドキュメントを見ると、time.localtime() によって返されるタプル構造がわかります。私が使用したいのは、年、月、日、時間、および最初の 5 つです。そのため、コードは次のとおりです。
リーリー
リーリー
Baidu Google によると、これは世界で唯一の方法のようです。
早速、解決策の原則と解決策をご紹介します:
公式ドキュメント: https://docs.python.org/3/lib...
クラス
time.
`struct_time`¶によって返される時間値シーケンスのタイプ。これは名前付きタプル インターフェイスを持つオブジェクトです。値にはインデックスと属性名によってアクセスできます。次の値が存在します。
gmtime()
,localtime()
, andstrptime()
tm_year
(例: 1993 年)tm_mon
範囲[1、12]tm_mday
範囲[1, 31]tm_hour
範囲[0, 23]tm_min
範囲[0, 59]tm_sec
範囲 [0, 61];strftime()
tm_wday
tm_yday
tm_isdst
tm_zone
tm_gmtoff
mktime()
の呼び出しでは、 が 1 に設定される場合があります。夏時間が有効である場合は 0、そうでない場合は 0 になります。-1 の値は、これが不明であることを示し、通常は正しい状態が入力されます。struct_time
を予期しているか、間違った型の要素を持っている場合、TypeError
が発生します。mktime()
,tm_isdst
may be set to 1 when daylight savings time is in effect, and 0 when it is not. A value of -1 indicates that this is not known, and will usually result in the correct state being filled in.When a tuple with an incorrect length is passed to a function expecting a
struct_time
, or having elements of the wrong type, aTypeError
ドキュメントを見ると、time.localtime() によって返されるタプル構造がわかります。私が使用したいのは、年、月、日、時間、および最初の 5 つです。そのため、コードは次のとおりです。 リーリーリーリー
完了。
転載の際は出典の明記をお願い致します。