pythonbook/Python 基础教程/元组.py

6 lines
57 B
Python
Raw Normal View History

2020-06-25 16:56:02 +08:00
x = (1,2,3)
x =(3)
print(type(x))
x =(3,)
print(type(x))