标签: python list range
在Python中,我将如何转换范围
Range1 = list(range(1, 11))
输出
1,2,3,...,10
到字符串列表,以便输出
' 01',' 02',' 03' ...,' 10'
请注意,我需要在单个int前面的前导0。