Q74
What will be the output of the following Python code? word1="Apple" word2="Apple" list1=[1,2,3] list2=[1,2,3] print(word1 is word2) print(list1 is list2)
A.
True
True
True
B.
False
True
True
C.
False
False
False
D.
True
False
AnswerFalse
Answer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board