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.
以下のスライスが機能する理由を誰かが説明できますか?
>>> S='SPAM' >>> S[1:1] ''
空のスライスを選択することは合法であるためです。
無意味なスライスを選択することもできます:
>>> 'foo'[1:0] ''