Python映射对象不可下标

Python映射对象不可下标,第1张

Python映射对象不可下标

在Python 3中,

map
返回类型为的可迭代对象
map
,而不是可下标的列表,该列表允许您编写
map[i]
。要强制列出结果,请写

payIntList = list(map(int,payList))

但是,在许多情况下,您可以不使用索引来更好地编写代码。例如,使用列表推导:

payIntList = [pi + 1000 for pi in payList]for pi in payIntList:    print(pi)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5643428.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存