标签: python for-loop
我目前正在研究循环,然后这个困扰了我
List = [1,3,5,7,9,11,13,15] for item in List[0:6]: print(item)
输出为
1 3 5 7 9 11
我以为它会打印七个项目,因为我从[0]开始 但是那是怎么发生的呢?