如果我有三个列表,如
a = [1, 2, 3] b = [4, 5, 6] c = [7, 8, 9]
并希望像这样打印出来
1 4 7 2 5 8 3 6 9
我该怎么做?
python list
list ×1
python ×1