0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Pythonで出会った英単語

0
Last updated at Posted at 2026-04-15

coordinate

  • 英単語の意味:座標
  • Pythonにおける意味:主に平面や3次元空間上の特定の点を表す数値のセットです。通常、(x, y)や(lat, lon)のタプルやリスト、NumPy配列として表現されます。地図データや画面描画など、位置情報を扱う場面で不可欠なデータ構造。

operand

  • 英単語の意味:演算の対象となる数値および変数。
  • Pythonにおける意味:「+や-などの演算子(Operator)によって計算や処理の対象となる値・変数・データ」のこと。
  • 例:a + 5 という式において、+ が演算子、a と 5 がオペランド

parenthesis

  • 英単語の意味:かっこ
  • Pythonにおける意味:かっこ

unpack

  • 英単語の意味:荷物などを紐解く
  • Pythonにおける意味:リスト、タプル、辞書などのコレクション(複合データ型)に含まれる複数の要素を、バラして個別の変数に一度で代入または展開する操作のことです。コードを簡潔にし、可読性を高めるために使う。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?