Question 1 Not yet answered Marked out of 2.00 What happens when the following two lines are executed in Python? evens =
Posted: Sat May 14, 2022 4:26 pm
Question 1 Not yet answered Marked out of 2.00 What happens when the following two lines are executed in Python? evens = (4, 6, 8, 10) evens[@] 3 = Select one: O a. This will cause a TypeError: 'tuple' object does not support item assignment. O b. Nothing will result as 3 is not an even number. Ос. The first element of evens is assigned the value 3. O d. The tuple evens will contain 5 elements.