Skip to main content
Ndfa

python使用分号连接int列表

你可以使用 join() 函数来将列表中的元素通过分号连接成字符串。代码如下:

lst = [1, 2]
result = ';'.join(map(str, lst))
print(result)

运行结果将是:

1;2