klyn.time.DateTime.DateTime
constructor
public DateTime(year as Int = 1970, month as Int = 1, day as Int = 1, hour as Int = 0, minute as Int = 0, second as Int = 0, usecond as Int = 0, timeZone as TimeZone = TimeZone.UTC):
Description
Constructs a DateTime from individual date/time components.
import klyn.time
dt = DateTime(year=2023, month=10, day=5, hour=14, minute=30, second=45)
Parameters
  • year Year component.
  • month Month component in range 1..12.
  • day Day component.
  • hour Hour component.
  • minute Minute component.
  • second Second component.
  • usecond Microsecond component.
  • timeZone Timezone for the provided components. ```klyn import klyn.time dt = DateTime(year=2023, month=10, day=5, hour=14, minute=30, second=45) ```