Quiz: Python Basics
Total Ques: 19
Q.2 What will be the output of the following Python code? x = ['ab', 'cd'] for i in x: i.upper() print(x)
      Easy
  #python