# 在脚本中导入c4py库
import c4py
# 使用c4py库
c4py.py_load_so()
c4py.global_init()
for i in range(0,11):
tagN = "YC" + str(i)
tagV = c4py.get_tag_value(tagN.encode())
tagD = c4py.get_tag_desc(tagN.encode()).decode()
c4py.clog_info("tag n:{},d:{},v:{}".format(tagN,tagD,tagV).encode())
c4py.global_release()