Python string taken principle, the target position illustrated

When Python string interception always a bit confused, to find an icon from the official website, to understand how Python strings are marked, the specific meaning of icons are as follows:

 

 +---+---+---+---+---+---+
 | P | y | t | h | o | n |
 +---+---+---+---+---+---+
 0   1   2   3   4   5   6
-6  -5  -4  -3  -2  -1

 

>>> word[:2]  # character from the beginning to position 2 (excluded)
'Py'
>>> word[4:]  # characters from position 4 (included) to the end
'on'
>>> word[-2:] # characters from the second-last (included) to the end
'on'

 

Guess you like

Origin www.cnblogs.com/frisk/p/11568441.html