元组也是序列,区别于列表,它不可更改,语法简单只要加逗号隔开即可
1.1,2,3
(1,2,3)
2.42,
(42,)
3.3*(40+2)
126
3*(40+2,)
(42,42,42)
4.x = 1,2,3
x[1]
2
x[0:2]
(1,2)
原文地址:https://www.cnblogs.com/sdibtzhou/p/8893854.html
时间: 2024-11-13 07:53:16
元组也是序列,区别于列表,它不可更改,语法简单只要加逗号隔开即可
1.1,2,3
(1,2,3)
2.42,
(42,)
3.3*(40+2)
126
3*(40+2,)
(42,42,42)
4.x = 1,2,3
x[1]
2
x[0:2]
(1,2)
原文地址:https://www.cnblogs.com/sdibtzhou/p/8893854.html