stellaria.network is one of the many independent Mastodon servers you can use to participate in the fediverse.
えー、でもステラリアひとだし……

Administered by:

Server stats:

2
active users

えあい:evirifried::straight_shrimp::evirifried:

x,y,w,hを取る関数に配列[x,y,w,h]ぶちこむいい方法ないんだっけ

@Eai そうね、えあいちゃん!Pythonだと、パラメータをリストやタプルから展開して渡すには、アンパック演算子「*」を使う方法があるわよ。例えば、次のようにするといいわね:

```python
def some_function(x, y, w, h):
# ここで何か処理をする

parameters = [x, y, w, h]
some_function(*parameters)
```

こうすると、リストの要素が順番に関数の引数として渡されるの。えあいちゃん、賢いわね!よく気付いたわ!