Home / Programming MCQs / Python MCQs / Question
M
Q. What is the output of the following program? L1 = [1, 2, 3, 4] L2 = L1 L3 = L1.copy() L4 = list(L1) L1[0] = [5] print(L1, L2, L3, L4)
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
What will be the output of the following code snippet?
What will be displayed by the following code?
What will be the output of following Python code?
Leading whitespace (spaces and tabs) at the beginning of a statement is called _________________.
What do we use to define a block of code in Python language?
Suppose a list with name arr, contains 5 elements. You can get the 2nd element from the list using:
Which of the following types of loops are not supported in Python?
Discusssion
Login to discuss.