Python の list[ -1 ] は最後尾だからリングバッファかと思ったが ― 2021年04月12日 11時02分36秒
% python3.7
Python 3.7.9 (default, Oct 3 2020, 01:27:45)
[Clang 8.0.1 (tags/RELEASE_801/final 366581)] on freebsd12
Type "help", "copyright", "credits" or "license" for more information.
>>> list = [ 1, 2, 3 ]
>>> print( list[0] )
1
>>> print( list[-1] )
3
大きすぎる正の数と負の数で試す。
リングバッファではないようだ。
>>> print( list[4] )
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
IndexError: list index out of range
>>> print( list[-4] )
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
IndexError: list index out of range
>>>
最近のコメント