a={1:1,2:2,3:3} l = [str(k) for k in a.keys()] print ','.join(l)
首先構建一個key組成的list,字典a中的key時int類型,爲了使用str的join()方法鏈接字符串,於是在構建list時須要使用str(k)python