切片区间——左闭右开区间
list = ['Google', 'Runoob', "Zhihu", "Taobao", "Wiki"]
# 读取第二位
print ("list[1]: ", list[1])
# 从第二位开始(包含)截取到倒数第二位(不包含)
print ("list[1:-2]: ", list[1:-2])
输出示例
标签:包含,示例,Python,list,理解,记忆,第二位,print,开区间
来源: https://blog.csdn.net/qq_47925836/article/details/115252419