@ 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'
Ich habe es mit ideone versucht.
http://ideone.com/0q0x1y
alphabet = 'abcdefghijklmnopqrstuvwxyz'
print(len(alphabet))
print(alphabet[0:25])
print(alphabet[:25])
print(alphabet[::-1])
Ergebnis
Success time: 0.01 memory: 9992 signal:0
26
abcdefghijklmnopqrstuvwxy
abcdefghijklmnopqrstuvwxy
zyxwvutsrqponmlkjihgfedcba
Ich denke, es ist leicht, Fehler zu machen, wenn Sie aus einer anderen Sprache zu Python zurückkehren.
Recommended Posts