Script execution

This commit is contained in:
2017-08-07 14:12:55 +02:00
parent 32d4894314
commit 65346e5b8d
+2 -2
View File
@@ -58,5 +58,5 @@ now();
ticks = time.time()
print "Number of ticks since 12:00am, January 1, 1970:", ticks
#print time_str;
localtime = time.localtime(time.time())
print "Local current time :", localtime
localtime = time.asctime( time.localtime(time.time()) )
print "Local current time :", localtime