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】ジェネレーター式の構文

Posted at

ジェネレーター式の構文は「(式 for 変数 in イテラブル)」です。丸カッコのためタプルのようですが、タプルに内包表記はありません。

ジェネレータオブジェクトは値を取得するまで次の値が作られないため、インデックスでは取得できません。for文かnext関数で取得します。

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?