为了账号安全,请及时绑定邮箱和手机立即绑定

解释器的结果和这种示例运行结果不一样 能告诉我是什么原因吗?

digits = [2,3,8,9,0,3,5,7]
print("The first three items in the list are: ")
print(digits[:3])
print("\nThree items from the middle of the list are: ")
print(digits[2:5])
print("\nThe last three items in the list are: ")
print(digits[-3:])

运行结果如下:

The first three items in the list are: 
[2, 3, 8]
Three items from the middle of the list are: 
[8, 9, 0]
The last three items in the list are: 
[3, 5, 7]


正在回答

举报

0/150
提交
取消
初识Python
  • 参与学习       758620    人
  • 解答问题       8667    个

学python入门视频教程,让你快速入门并能编写简单的Python程序

进入课程

解释器的结果和这种示例运行结果不一样 能告诉我是什么原因吗?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信