#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Module docstring
"""
import ...
Ещё варианты обсуждают здесь https://stackoverflow.com/questions/1523427/what-is-the-common-header-format-of-python-files
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Module docstring
"""
import ...
Ещё варианты обсуждают здесь https://stackoverflow.com/questions/1523427/what-is-the-common-header-format-of-python-files
# -*- coding: utf-8 -*-
import datetime
import sys
TIME_START = datetime.datetime.now()
def my_debug(txt):
#print('%s - %s' % (datetime.datetime.now() - TIME_START, txt))
pass
def my_info(txt):
print('%s - %s' % (datetime.datetime.now() - TIME_START, txt))
pass
my_info("Python")
my_info("Начали")