0
0

More than 1 year has passed since last update.

Python3エンジニア認定基礎模試試験4回目 -間違えた問題-

Last updated at Posted at 2022-07-11

獲得点数 925/1000点

正答率: 92.5 % ( 37問 / 40問 正解 )

以下のプログラムをインタプリタにて実行した際の出力結果を選びなさい
(x, y) for x in [0,1,2] for y in [1,2,3] if x != y

A,[(0, 1), (0, 2), (0, 3), (1, 2), (1, 3), (2, 1), (2, 3)]
#forが入れ子になっている
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