码迷,mamicode.com
首页 > 其他好文 > 详细

元祖在命令行里的操作

时间:2019-01-07 17:34:41      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:oat   win32   mat   orm   more   form   tuple   copyright   edits   


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‘>

元祖在命令行里的操作

标签:oat   win32   mat   orm   more   form   tuple   copyright   edits   

原文地址:https://www.cnblogs.com/antique/p/10232367.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!