码迷,mamicode.com
首页 > 编程语言 > 详细

一维数组中元素反向[::-1]

时间:2018-11-08 10:57:13      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:相互   .com   元素   tps   res   转换   href   pytho   sha   

[::-1] 数组中元素反向

觉得有用的话,欢迎一起讨论相互学习~Follow Me

一维数组反向[::-1]

import numpy as np
a = np.arange(8)
print ("生成0-19之间的数组",a)
# 一维数组反向
a1 = a[::-1]
print("将a数组反向",a1)
# 生成0-19之间的数组 [0 1 2 3 4 5 6 7]
# 将a数组反向 [7 6 5 4 3 2 1 0]

高维数组[::-1]没有反向效果

# 高维数组则没有反向效果
# 将数组转换为(2,4)
# 将数组转换为(4,2)
a_2_4 = a1.reshape(2, 4)
a_4_2 = a1.reshape(4, 2)
print("将数组转换为(2,4)\n",a_2_4)
print("将数组转换为(4,2)\n",a_4_2)
a_reshape_2_4 = a1.reshape(2, 4)[::-1]
a_reshape_4_2 = a1.reshape(4, 2)[::-1]
print("将(2,4)数组反向\n",a_reshape_2_4)
print("将(4,2)数组反向\n",a_reshape_4_2)
"""将数组转换为(2,4)
 [[7 6 5 4]
 [3 2 1 0]]
将数组转换为(4,2)
 [[7 6]
 [5 4]
 [3 2]
 [1 0]]
将(2,4)数组反向
 [[3 2 1 0]
 [7 6 5 4]]
将(4,2)数组反向
 [[1 0]
 [3 2]
 [5 4]
 [7 6]]"""

一维数组中元素反向[::-1]

标签:相互   .com   元素   tps   res   转换   href   pytho   sha   

原文地址:https://www.cnblogs.com/cloud-ken/p/9927568.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!