datetimeを含む例文一覧と使い方
該当件数 : 69件
Return a datetime. timedelta object representing the given number of days, seconds and microseconds.例文帳に追加
指定された日、秒、マイクロ秒のdatetime.timedelta オブジェクトを返します。 - Python
must return the same result for every datetime dt with例文帳に追加
全ての datetime オブジェクトdt について常に同じ結果を返さなければならないという点で、一貫性を持っていなければなりません。 - Python
The datetime module supplies classes for manipulating dates and times in both simple and complex ways.例文帳に追加
datetime モジュールでは、日付や時間データを簡単な方法と複雑な方法の両方で操作するためのクラスを提供しています。 - Python
Return a datetime. time object with the specified hour, minute,second and microsecond.New in version 2.4. 例文帳に追加
指定された時、分、秒、マイクロ秒のdatetime.time オブジェクトを返します。 - Python
If not, when a datetime object is compared to an object of a different type, TypeError is raised unless the comparison is == or !=.例文帳に追加
そうでない場合、datetime オブジェクトと異なる型のオブジェクトが比較されると、比較演算子が == または !=でないかぎり TypeError が送出されます。 - Python
Parameters that specifydates are given as integers.Most of these functions rely on the datetime module which uses an idealized calendar, the current Gregorian calendar indefinitely extended in both directions.例文帳に追加
日付を表す引数は整数値で与えます。 このモジュールで提供する関数のほとんどは datetime に依存しており、過去も未来も現代のグレゴリオ暦を利用します。 - Python
in seconds since the epoch; pass in an instance of the DateTime wrapper class例文帳に追加
エポックからの経過秒数。 引数として指定する時はDataTimeラッパクラスのインスタンスを使用する。 - Python
Note:In order to stop comparison from falling back to the defaultscheme of comparing object addresses, datetime comparisonnormally raises TypeError if the other comparandisn't also a datetime object. 例文帳に追加
注意:型混合の比較がデフォルトのオブジェクトアドレス比較となってしまうのを抑止するために、被演算子のもう一方が datatime オブジェクトと異なる型のオブジェクトの場合には TypeError が送出されます。 - Python
The menu bar contains the following drop-down menus: Operator, Boolean, String, Node, Number, DateTime, BPEL. 例文帳に追加
メニューバーには、「演算子」、「論理」、「文字列」、「ノード」、「数値」、「日付と時刻」、「BPEL」の各ドロップダウンメニューがあります。 - NetBeans
Normalization is performed so that the resulting number of microseconds and seconds lie in the rangesdocumented for datetime.例文帳に追加
マイクロ秒と秒が datetime.timedelta オブジェクトで定義されている範囲に入るように正規化を行います。 - Python
The rules for time adjustment across the world are more political than rational, and there is no standardsuitable for every application. The datetime module exports the following constants:例文帳に追加
世界各国における時刻の修正に関する法則は合理的というよりも政治的なものであり、全てのアプリケーションに適した標準というものが存在しないのです。 datetime モジュールでは以下の定数を公開しています: - Python
If both comparands are aware, and have the same tzinfo member,the common tzinfo member is ignored and the base datetimes are compared.例文帳に追加
両方の被演算子が aware で、同じ tzinfo メンバを持つ場合、共通の tzinfoメンバは無視され、基本の datetime 間の比較が行われます。 - Python
If both comparands are aware, and have the same tzinfo member, the common tzinfo member is ignored and the base times are compared.例文帳に追加
両方の被演算子が aware で、同じ tzinfo メンバを持つ場合、共通の tzinfoメンバは無視され、基本の datetime 間の比較が行われます。 - Python
Note thattzinfo=None can be specified to create a naive time from an aware time, without conversion of the time members.例文帳に追加
メンバに対する変換を行わずに aware な datetime オブジェクトから naive な time オブジェクトを生成するために、tzinfo=None を指定することもできます。 - Python
No time zoneadjustments are done in this case.If both are aware and have different tzinfo members,a-b acts as if a and b were first converted to naive UTC datetimes first.例文帳に追加
両方が aware で異なる tzinfo メンバを持つ場合、a-b は a および b をまず naive な UTC datetimeオブジェクトに変換したかのようにして行います。 - Python
The smallest possible difference between non-equal time objects, timedelta(microseconds=1), although note that arithmetic on time objects is not supported.例文帳に追加
等しくない datetime オブジェクト間の最小の差で、 timedelta(microseconds=1)ですが、time オブジェクト間の四則演算はサポートされていないので注意してください。 - Python
If you merely want to remove the time zone object from an aware datetimedt without conversion of date and time members, use例文帳に追加
単に aware な datetime オブジェクト dt からタイムゾーンオブジェクトを除去したいだけで、日付や時刻データメンバの変換を行わないのなら、 dt.replace(tzinfo=None) を使ってください。 - Python
Whether a naive datetime object representsCoordinated Universal Time (UTC), local time, or time in some othertimezone is purely up to the program, just like it's up to the program whether a particular number represents meters, miles, or mass.例文帳に追加
特定の数字がメートルか、マイルか、質量を表すかといったことがプログラムの問題であるように、naive な datetime オブジェクトが標準世界時 (UTC: CoordinatedUniversal time) を表現するか、ローカルの時刻を表現するか、ありは他のいずれかのタイムゾーンにおける時刻を表現するかは純粋にプログラムの問題となります。 - Python
A tzinfo subclass's methods should therefore be prepared to accept a dt argument of None, or of class datetime.When None is passed, it's up to the class designer to decide the best response.例文帳に追加
従って、tzinfo のサブクラスにおけるメソッドは引数 dt が None の場合と、datetime の場合を受理するように用意しなければなりません。 None が渡された場合、最良の応答方法を決めるのはクラス設計者次第です。 - Python
| この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。 |
| © 2010, Oracle Corporation and/or its affiliates. Oracle and Java are registered trademarks of Oracle and/or its affiliates.Other names may be trademarks of their respective owners. |
| Copyright 2001-2004 Python Software Foundation.All rights reserved. Copyright 2000 BeOpen.com.All rights reserved. Copyright 1995-2000 Corporation for National Research Initiatives.All rights reserved. Copyright 1991-1995 Stichting Mathematisch Centrum.All rights reserved. |
|
ログイン |
Weblio会員(無料)になると
|
|
ログイン |
Weblio会員(無料)になると
|