码迷,mamicode.com
首页 > 其他好文 > 详细

array与List之间相互转化

时间:2018-05-29 12:29:59      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:coding   color   RoCE   ESS   auth   bsp   /usr   相互   finish   

#!/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之间相互转化

标签:coding   color   RoCE   ESS   auth   bsp   /usr   相互   finish   

原文地址:https://www.cnblogs.com/ggzhangxiaochao/p/9104354.html

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