Python3.x 中 input() 函数接受一个标准输入数据,返回为 string 类型。
# 将输入的变量,以空格划分 x,y,z = list(map(int, input().split()))
当然除了input()函数还有sys模块带有标准输入
,一般情况下比input()函数快4倍,这里注意下区别,input()把读到的行用字符串的形式返回,但不会返回行尾的换行符,而sys.stdin.readline()
则会,加上strip()函数效果就一样了
arr=sys.stdin.readline().strip()
Python split() 通过指定分隔符对字符串进行切片,如果参数 num 有指定值,则分隔 num+1 个子字符串。返回分割后的字符串列表。
str.split(str="", num=string.count(str)).
IndexError:list assignment index out of range
ERROR code
b = [] for i in range(10): b[i] = 7
空数组不能直接指定位置,list是一个空的,没有一个元素,进行list[0]就会出现错误!
解决方法1
b.append(1)
解决方法2
生成一个定长的list:
b=[0]*len(data) b[1]=1
aList = [123, 'xyz', 'zara', 'abc', 'xyz']; aList.remove('xyz') alist.insert(index,obj) obj=alist.pop(index) #defalut index=-1即最后一个元素
1 2 3 4
ans=[1,2,3,4] print(' '.join(map(str,ans)))
map()是 Python 内置的高阶函数,它接收一个函数 f 和一个 list,并通过把函数 f 依次作用在 list 的每个元素上,得到一个新的 list 并返回
https://blog.csdn.net/u013495762/article/details/82870455
https://www.cnblogs.com/lincappu/p/8179475.html(map函数用法)
https://blog.csdn.net/www_helloworld_com/article/details/82875433