What will be the output of the following Python code?
places = ['Bangalore', 'Mumbai', 'Delhi'] places1 = places places2 = places[:] places1[1]="Pune" places2[2]="Hyderabad" print(places)
निम्नलिखित Python कोड का आउटपुट क्या होगा?