⑴ python 如何将for循环 的结果写成一个数组
代码:
list=[]
foriinrange(10):
list.append(i)
print(list)
过程:
>>> for i in range(10):
... list.append(i)
...
>>> print(list)
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>>
⑵ python中的list和array的不同之处
在Python中,list和array都可以根据索引来取其中的元素,但是list可以用append或者+来新增元素或者添加数组,而array不行。具体区别如下:
1、作用不同
list是处理一组有序项目的数据结构;
array数组存储单一数据类型的多维数组;
2、内置数据类型
list是Python的内置数据类型;
array数组需要导入标准库才行,不属于内置类型;
3、数据类型是否相同
list中的数据类不必相同的,即每个元素可以是不同的数据类型;
array则是由Numpy封装,存放的元素都是相同的数据类型;
4、运算
列表list不可以进行数学四则运算;
数组array可以进行数学四则运算;
⑶ python怎么将用户输入的字符串转为数组
在python的IDLE中输入input_list = list(map(str,input())),回车,输入:dsfjd,再回车,输入print(input_list),打印的结果就是['d', 's', 'f', 'j', 'd']了。
⑷ python里面列表和数组区别是什么
python里面的列表用list表示,它非常类似我们js中的数组,使用中括号来表示。
例如 list3 = ["a", "b", "c", "d"]
python中默认没有提供数组类型,不过有个元组类型,它类似列表,但是不能修改。
tup1 = ('physics', 'chemistry', 1997, 2000)
在python中有个numpy包,它里面提供了数组array
import numpy as np
print(np.array([2,3,4]))
⑸ Python中list,tuple,dict,set的区别和用法
python中list,tuple,dict,set是最常用的集合类型。
list列表,相当于一个数组,不过list的长度是自动变化的而且列表元素自由的,不必每个元素都是同一种类型。它的简洁的定义方式是a=[]。有序组合
tuple也是一个组合。不过tuple在定义好之后就不能再变化。它的简洁的定义方式是a=1,3也可以是a=(1,3).有序组合。
dict是字典类型。也就是键值对类型。键名不可以重复,并且不可以变化(字符串就符合这个要求,常用字符串作为键名)。它的简洁的定义方式是a={}.无序组合(意思就是你无法按照添加的顺序对他进行遍历)。
set是set类型(不好翻译,用的也少)。也是一个无序的组合,元素是互斥的,也就不会出现相同的元素。可以把一个序列转换成无重复元素的set.无序组合。
以下是使用的示例代码。
a_tuple=(1,3423,'34')
a_list=[12,12.34,'sds']
a_dict={'key1':1,'key2':2}
a_set=set('2323')
fortina_tuple:
print('%sintuple'%t)
print('*'*10)
forlina_list:
print('%sinlist'%l)
print('*'*10)
fork,vina_dict.items():
print('key=%s,value=%sindict'%(k,v))
print('*'*10)
forsina_set:
print('%sinset'%s)
print('*'*10)
不明白可追问。
⑹ python如何将list中的字符转为数字
python里面好像只能直接转一维的list,以python 3.6为例:
问题 1:
list=['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
转化为:list=[0, 1 ,2, 3, 4, 5, 6, 7, 8, 9]
代码如下:
list_to_float=list(map(lambdax:float(x),list))
问题2:(对于二维数组,需要加个循环,变成一维数组)
list=[['0', '1', '2'], ['3', '4', '5'], ['6', '7', '8']]
转化为:list=[[0, 1 ,2], [3, 4, 5], [6, 7, 8]]
代码如下:
list_to_float=[]
foreachinlist:
each_line=list(map(lambdax:float(x),each))
list_to_float.append(each_line)
总之:关键还是map函数映射,如果是python 2.x的话,你可以试试
list_to_float=map(lambdax:float(x),list)
⑺ Python怎么将数字数组转为字符数组
用map函数
文档
map(function,iterable,...)
Applyfunctionto every item ofiterableand return a list of the results. If additionaliterablearguments are passed,functionmust take that many arguments and is applied to the items from all iterables in parallel. If one iterable is shorter than another it is assumed to be extended withNoneitems. IffunctionisNone, the identity function is assumed; if there are multiple arguments,map()returns a list consisting of tuples containing the corresponding items from all iterables (a kind of transpose operation). Theiterablearguments may be a sequence or any iterable object; the result is always a list.
a=[1,2,3,4]
s=map(str,a)