Python List Practice Questions


  1. What will be the output of the following code ?

    L = [9, 11, 13, 15, 17, 19, 21]
    print(L[1 : 0 : -2])
    
  2. [11]