You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
377 B

'''
Author: SJ2050
Date: 2021-10-29 19:19:32
LastEditTime: 2021-10-29 22:43:06
Version: v0.0.1
Description: Solution for homework1.5.
Copyright © 2021 SJ2050
'''
import numpy as np
if __name__ == '__main__':
arr = np.array([i for i in range(10)])
reversed_arr = arr[::-1]
print('初始数组:\n', arr)
print('翻转后数组:\n', reversed_arr)