array与List之间相互转化
Posted 棍子哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了array与List之间相互转化相关的知识,希望对你有一定的参考价值。
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2018/5/28 16:05 # @Author : zhang chao # @File : test.py import matplotlib.pyplot as plt import numpy as np alist=[1,2,3,4,5] print("List转为array:") aArray=np.array(alist) print(aArray) print("array 转为List:") toList=aArray.tolist() print(toList) D:\Download\python3\python3.exe "E:/A正在学习/python data dig/aTest/test.py" List转为array: [1 2 3 4 5] array 转为List: [1, 2, 3, 4, 5] Process finished with exit code 0
以上是关于array与List之间相互转化的主要内容,如果未能解决你的问题,请参考以下文章