标签: python
我将整数放入列表中然后对其进行排序:
a,b,c,d,e,f = 3,6,2,8,1,2 list1=[a,b,c,d,e,f] list5.sort()
现在我想将排序列表打印为字符串,但要查看变量,例如:
efcabd
我无法理解。
谢谢!