Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以制作一个列表,就像我想要 0 元素 1 和最后一个元素 500:
l = [1 ---> 直到 500]
我不想让它像 1,2,3,4,5,6,7,8 --> 一直到 500。有没有办法可以这样做:
l = [1 >>> 500]
range(1, 501)
蟒蛇 3:
list(range(1, 501))
使用范围(开始,停止)。stop 不包括在内,所以你需要使用 501