klyn.time.DateTime.now
property
public static readonly property now as DateTime:
Description
Returns the current date and time.
import klyn.time

now = DateTime.Now
print(now.toString())  # Output: current date and time
Returns
A DateTime object representing the current date and time. ``` import klyn.time now = DateTime.Now print(now.toString()) # Output: current date and time ```