python如何取数组后几位?

图片[1]-python如何取数组后几位?-uusu优素-乐高,模型,3d打印,编程

python中去数组后几位的方法:

一维数组输出最后一位的方法:

output=[1,2,3]

print(output[-1])

输出结果:

3

输出后两位:

output=[1,2,3]

print(output[-2:])

输出结果:

[2, 3]

二维数组输出最后一位:

output=[[1,2,3],
[4,5,6],
[2,5,6]]
print(output[1][-1])

输出结果:

6

原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞6 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容