[build] Add

Add print_list function
This commit is contained in:
Alexander Trofimov
2020-09-29 12:25:51 +03:00
parent 786b62081b
commit 68545075fb

View File

@ -63,6 +63,10 @@ def print_info(info=""):
print("------------------------------------------")
return
def print_list(list):
print('[%s]' % ', '.join(map(str, list)))
return
# file system -------------------------------------------
def is_file(path):
return os.path.isfile(get_path(path))