 
      
      datetime()Format a date time
datetime(format = "%F %T", timestamp = now(), utc = false)
format (string)  — Date time format. The format follows C/C++ std::strftime() format. The default value is "%F %T"timestamp (number, optional)  — Unix timestamp in seconds. The default value is current date time (now())utc (boolean, optional)  — Timestamp in UTC. The default value is false
string — Returns formatted date time
import time
 
datetime("%A, %e %B %Y - %H:%M:%S %Z")   ' Returns "Saturday, 17 April 2021 - 09:51:22 WIB"
                                         ' (current date time)