Python - Operators and Expression Evaluation
What will be the output of the following code?
tuple1 = (4, 5, 6) tuple2 = tuple1 tuple3 = (4, 5, 6) print(tuple1 is tuple2) print(tuple1 is tuple3)
