klyn.time.DateTime.now
property
public static readonly property now as DateTime:
DescriptionReturns the current date and time.
import klyn.time
now = DateTime.Now
print(now.toString()) # Output: current date and time
ReturnsA DateTime object representing the current date and time. ``` import klyn.time now = DateTime.Now print(now.toString()) # Output: current date and time ```