erg/doc/zh_TW/syntax/28_spread_syntax.md
2022-09-06 20:13:44 +08:00

44 lines
No EOL
1.4 KiB
Markdown

# 傳播賦值
[![badge](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Fgezf7g7pd5.execute-api.ap-northeast-1.amazonaws.com%2Fdefault%2Fsource_up_to_date%3Fowner%3Derg-lang%26repos%3Derg%26ref%3Dmain%26path%3Ddoc/EN/syntax/28_spread_syntax.md%26commit_hash%3D06f8edc9e2c0cee34f6396fd7c64ec834ffb5352)](https://gezf7g7pd5.execute-api.ap-northeast-1.amazonaws.com/default/source_up_to_date?owner=erg-lang&repos=erg&ref=main&path=doc/EN/syntax/28_spread_syntax.md&commit_hash=06f8edc9e2c0cee34f6396fd7c64ec834ffb5352)
在分解賦值中,將 `...` 放在變量前面會將所有剩余元素展開到該變量中。 這稱為擴展賦值。
```python
[x,...y] = [1, 2, 3]
assert x == 1
assert y == [2, 3]
x, ...y = (1, 2, 3)
assert x == 1
assert y == (2, 3)
```
## 提取賦值
如果在 `...` 之后沒有寫入任何內容,則忽略并分配剩余的元素。 這種類型的擴展賦值具體稱為抽取賦值。
提取分配是一種方便的語法,用于本地化模塊或記錄中的特定屬性。
```python
{sin; cos; tan; ..} = import "math"
```
After that, you can use `sin, cos, tan` locally.
You can do the same with records.
```python
record = {x = 1; y = 2}
{x; y; ...} = record
```
If you want to expand all, use `{*} = record`. It is `open` in OCaml.
```python
record = {x = 1; y = 2}
{*} = records
assert x == 1 and y == 2
```
<p align='center'>
<a href='./27_comprehension.md'>上一頁</a> | <a href='./29_decorator.md'>下一頁</a>
</p>