5 lines
158 B
Python
5 lines
158 B
Python
from datetime import datetime, timedelta
|
|
|
|
def log(value):
|
|
print(u' '.join(( str(datetime.now()), value)).encode('utf-8').strip())
|
|
# print( str(value)) |