Python 创建单元素的元组

网友投稿 712 2022-05-30

环境信息

ModelArts

Notebook - Multi-Engine 2.0 (python3)

JupyterLab - Notebook - Conda-python3

失败示例

type((1)) # 失败示例-1 int

type(((1))) # 失败示例-2 int

type(1,) # 失败示例-3 int

type(tuple(1)) # 失败示例-4 --------------------------------------------------------------------------- TypeError Traceback (most recent call last) in () ----> 1 type(tuple(1)) TypeError: 'int' object is not iterable

type(tuple(1,)) # 失败示例-5 --------------------------------------------------------------------------- TypeError Traceback (most recent call last) in () ----> 1 type(tuple(1,)) TypeError: 'int' object is not iterable

成功示例

print(type((1,))) # 成功示例 a = 1, # 单元素 加个 逗号 就可以了 print(type(a))

type(((1),)) # 成功示例 tuple

help

help(tuple) Help on class tuple in module builtins: class tuple(object) | tuple() -> empty tuple | tuple(iterable) -> tuple initialized from iterable's items | | If the argument is a tuple, the return value is the same object. | | Methods defined here:

Python 创建单元素的元组

相关链接

Python入门篇

Python进阶篇

Python应用篇

帮助文档-AI开发平台ModelArts

【生长吧!Python】有奖征文火热进行中

备注

欢迎各位同学一起来交流学习心得^_^

在线课程、沙箱实验、认证、论坛和直播,其中包含了许多优质的内容,推荐了解与学习。

AI开发平台ModelArts Python

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:[Python3 网络爬虫开发实战] 5.3 - 非关系型数据库存储
下一篇:pytorch cpu占用较高
相关文章