Home / CSE MCQs / Python MCQs :: Discussion

Discussion :: Python MCQs

  1. What is the output of the following?

    a = [0, 1, 2, 3]
    for a[0] in a:
        print(a[0])
  2. A.
    0 1 2 3
    B.
    0 1 2 2
    C.
    3 3 3 3
    D.
    error

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    The value of a[0] changes in each iteration. Since the first value that it takes is itself, there is no visible error in the current example.


Be The First To Comment