Python 元组解构 All In One
Posted xgqfrms
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 元组解构 All In One相关的知识,希望对你有一定的参考价值。
Python 元组解构 All In One
Python 元组解构 All In One
#!/usr/bin/python3
# 中间值解构赋值
a, b, c, d, *e, f, g = range(20)
print(len(e))
# 14
a, b, *c, d = [1, 2, 3, 4, 5, 6, 7, 8, 9]
print(a)
print(b)
print(c)
print(d)
\'\'\'
1
2
[3, 4, 5, 6, 7, 8]
9
\'\'\'
https://www.sololearn.com/compiler-playground/chuI1m2O13uL
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment
Tuple / 元组
Python 的元组与列表类似,不同之处在于元组的元素不能修改。
元组使用小括号 ( )
,列表使用方括号 [ ]
。
元组创建很简单,只需要在括号中添加元素,并使用逗号
隔开即可。
https://www.runoob.com/python3/python3-tuple.html
comment / 注释
# 这是一个单行注释
\'\'\'
这是多行注释,用三个单引号
这是多行注释,用三个单引号
这是多行注释,用三个单引号
\'\'\'
"""
这是多行注释,用三个双引号
这是多行注释,用三个双引号
这是多行注释,用三个双引号
"""
https://www.runoob.com/python3/python3-comment.html