MCPcopy Create free account
hub / github.com/Boris-code/feapder / list2str

Function list2str

feapder/utils/tools.py:2099–2107  ·  view source on GitHub ↗

列表转字符串 :param datas: [1, 2] :return: (1, 2)

(datas)

Source from the content-addressed store, hash-verified

2097
2098
2099def list2str(datas):
2100 """
2101 列表转字符串
2102 :param datas: [1, 2]
2103 :return: (1, 2)
2104 """
2105 data_str = str(tuple(datas))
2106 data_str = re.sub(",\)$", ")", data_str)
2107 return data_str
2108
2109
2110def make_insert_sql(

Callers 2

make_insert_sqlFunction · 0.85
make_batch_sqlFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected