@@ -1297,10 +1297,24 @@ class Timestamp(_Timestamp):
1297
1297
----------
1298
1298
ts_input : datetime-like, str, int, float
1299
1299
Value to be converted to Timestamp.
1300
- year, month, day : int
1301
- hour, minute, second, microsecond : int, optional, default 0
1300
+ year : int
1301
+ Value of year.
1302
+ month : int
1303
+ Value of month.
1304
+ day : int
1305
+ Value of day.
1306
+ hour : int, optional, default 0
1307
+ Value of hour.
1308
+ minute : int, optional, default 0
1309
+ Value of minute.
1310
+ second : int, optional, default 0
1311
+ Value of second.
1312
+ microsecond : int, optional, default 0
1313
+ Value of microsecond.
1302
1314
tzinfo : datetime.tzinfo, optional, default None
1315
+ Timezone info.
1303
1316
nanosecond : int, optional, default 0
1317
+ Value of nanosecond.
1304
1318
tz : str, pytz.timezone, dateutil.tz.tzfile or None
1305
1319
Time zone for time which Timestamp will have.
1306
1320
unit : str
@@ -1316,6 +1330,11 @@ class Timestamp(_Timestamp):
1316
1330
datetime-like corresponds to the first (0) or the second time (1)
1317
1331
the wall clock hits the ambiguous time.
1318
1332
1333
+ See Also
1334
+ --------
1335
+ Timedelta : Represents a duration, the difference between two dates or times.
1336
+ datetime.datetime : Python datetime.datetime object.
1337
+
1319
1338
Notes
1320
1339
-----
1321
1340
There are essentially three calling conventions for the constructor. The
0 commit comments