元祖在命令行里的操作
Posted antique
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了元祖在命令行里的操作相关的知识,希望对你有一定的参考价值。
C:Users太阳之泪>python
Python 3.7.1 (v3.7.1:260ec2c36a, Oct 20 2018, 14:05:16) [MSC v.1915 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> test = (1,2,3)
>>> print(test)
(1, 2, 3)
>>> test = (1)
>>> print(test)
1
>>> type(test)
<class ‘int‘>
>>> test = (1.)
>>> type(test)
<class ‘float‘>
>>> test = (1,)
>>> type(test)
<class ‘tuple‘>
以上是关于元祖在命令行里的操作的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Linux 中使用 Alpine 在命令行里访问 Gmail