Python > Python does not include the last offset
1676 ワード
@ Introducing Python: Modern Computing in Simple Packages by Bill Lubanovic
(No. 948 / 12833)
, offset 12 to 14 (Python does not include the last offset):
>>> letters[12:15]
'xyz'
ideoneで試してみた。
alphabet = 'abcdefghijklmnopqrstuvwxyz'
print(len(alphabet))
print(alphabet[0:25])
print(alphabet[:25])
print(alphabet[::-1])
結果
Success time: 0.01 memory: 9992 signal:0
26
abcdefghijklmnopqrstuvwxy
abcdefghijklmnopqrstuvwxy
zyxwvutsrqponmlkjihgfedcba
他の言語からPythonに戻ってきた時にミスしやすいように思う。
Author And Source
この問題について(Python > Python does not include the last offset), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/a09b64ee6ade0e2a3d14著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .