以下代码的输出结果是?()
vlist = list(range(5))
for e in vlist:
print(e,end=",")
0, 1, 2, 3, 4,
[0, 1, 2, 3, 4]
0 1 2 3 4
0; 1; 2; 3; 4;