mirror of
https://github.com/luzhisheng/js_reverse.git
synced 2025-04-12 11:37:09 +08:00
11 lines
176 B
Python
11 lines
176 B
Python
from datetime import datetime
|
|
|
|
|
|
class Base(object):
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
def log(self, s):
|
|
print('【%s】 %s' % (datetime.now(), s), flush=True)
|