如何访问索引本身以获取如下列表?
ints = [8, 23, 45, 12, 78] for i in ints: print('item #{} = {}'.format(???, i))
当我使用循环遍历它时for,如何访问循环索引,在这种情况下从1到5?
for
python loops list
list ×1
loops ×1
python ×1