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

6 lines
57 B
Python

x = (1,2,3)
x =(3)
print(type(x))
x =(3,)
print(type(x))