Python 3.7.3:枚举时从列表中删除括号

时间:2019-05-26 17:27:33

标签: python-3.7

当我运行这段代码时

courses = ['Math', 'Science', 'Latin', 'Astronomy']

for index, course in enumerate(courses):
    print(index, course)

我得到这个结果

(0, 'Math')
(1, 'Science')
(2, 'Latin')
(3, 'Astronomy')

代替

0 Math
1 Science
2 Latin
3 Astronomy

0 个答案:

没有答案