修复 Python 中错误 TypeError: 'map' Object Is Not Subscriptable
每种编程语言都会遇到很多错误。 有些发生在编译时,有些发生在运行时。
本文将讨论 TypeError: 'map' object is not subscriptable,它是 TypeError 的子类。 当我们尝试执行与对象类型不兼容的操作时,我们会遇到类型错误。
Python 中出现 TypeError: 'map' object is not subscriptable 错误的原因
Python 3 中的 Python 2 映射操作
在 Python 2 中,map()
方法返回一个列表。 我们可以通过下标运算符 []
使用索引来访问列表的元素。
在Python 3中,map()
方法返回一个对象,该对象是一个迭代器并且不能有下标。 如果我们尝试使用下标运算符 []
访问该项目,则会引发 TypeError: 'map' object is not subscriptable。
示例代码:
#Python 3.x
my_list = ["1", "2", "3", "4"]
my_list = map(int, my_list)
print(type(my_list))
my_list[0]
输出:
#Python 3.x
<class 'map'>
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-1-07511913e32f> in <module>()
2 my_list = map(int, my_list)
3 print(type(my_list))
----> 4 my_list[0]
TypeError: 'map' object is not subscriptable
修复 Python 中的 TypeError: 'map' object is not subscriptable 错误
在 Python 3 中将 Map 对象转换为 List
如果我们使用 list()
方法将map对象转换为列表,我们可以使用下标运算符/列表方法。
示例代码:
#Python 3.x
my_list = ["1", "2", "3", "4"]
my_list = list(map(int, my_list))
print(my_list[0])
输出:
#Python 3.x
1
在 Python 3 中使用 for 循环和迭代器
我们可以使用 for 循环访问迭代器中的项目。 它调用后面的 __next__()
方法并打印所有值。
示例代码:
#Python 3.x
my_list = ["1", "2", "3", "4"]
my_list = list(map(int, my_list))
for i in my_list:
print(i)
输出:
#Python 3.x
1
2
3
4
相关文章
修复 Python 中 TypeError: Decoding Unicode Is Not Supported 错误
发布时间:2023/07/05 浏览次数:60 分类:Python
-
本文将讨论如何解决Python中的 TypeError: decoding Unicode is not supported 错误。Python 中 TypeError: decoding Unicode is not supported 错误
修复 Python 中 SSL: CERTIFICATE_VERIFY_FAILED 错误
发布时间:2023/07/05 浏览次数:120 分类:Python
-
本文介绍了您在将 SSL 与网站或应用程序连接期间可能遇到的 SSL: CERTIFICATE_VERIFY_FAILED 错误的详细信息。
修复 Python 中错误 Pylint Unresolved Import
发布时间:2023/07/05 浏览次数:89 分类:Python
-
本文将讨论如何在 Python 中使用 Pylint 解决未解决的导入错误。修复 Python 中的 Pylint 无法解析的导入错误 要解决 Python 中未解决的导入错误,请在工作区设置中设置 Python 路径。
修复 Python 中 ImportError: Cannot Import Name 错误
发布时间:2023/07/05 浏览次数:142 分类:Python
-
通过这个解释,我们将了解为什么会收到 ImportError: Cannot import name 错误。 我们还将学习如何在 Python 中修复此类错误。Python 中 ImportError: cannot import name 错误的原因
修复 Python 中错误 AttributeError: 'module' Object Has No Attribute 'SSL_ST_
发布时间:2023/07/05 浏览次数:171 分类:Python
-
在 Python 中使用 SSL 模块时,会引发 AttributeError: 'module' object has no attribute 'SSL_ST_INIT' 错误,因为 SSL 模块在 Python 标准库中不可用。要解决此问题,您必须安装 openssl-devel 软件包。
修复 python 中 AttributeError: 'generator' Object Has No Attribute 'next'
发布时间:2023/07/05 浏览次数:72 分类:Python
-
本篇文章将介绍修复 Python 中的 AttributeError: 'generator' object has no attribute 'next'。修复 Python 中的 AttributeError: 'generator' object has no attribute 'next' 错误
Python 中错误 File<Stdin>, Line 1, in <Module>
发布时间:2023/07/05 浏览次数:134 分类:Python
-
在本文中,我们将讨论人们面临的最常见的语法错误,即文件“”,第 1 行, 错误。 让我们看看为什么会出现这个错误以及如何在 Python 中解决它。Python 错误 File<Stdin>, Line 1, in <Module&
Python 中错误 AttributeError: Module Enum Has No Attribute Intflag
发布时间:2023/07/05 浏览次数:65 分类:Python
-
本篇文章将介绍修复 Python 中的 AttributeError: module 'enum' has no attribute 'IntFlag'。卸载 enum34 包以修复 Python 中的 AttributeError: module 'enum' has no attribute 'IntFlag' 错误
python 中解决 Graphviz Executables Are Not Found 错误
发布时间:2023/07/04 浏览次数:87 分类:Python
-
本文介绍了如何解决运行 Python 脚本时未找到 Graphviz 可执行文件的错误。安装Graphviz解决Python中 Graphviz executables are not found 错误