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)
निम्नलिखित Python कोड का आउटपुट क्या होगा?
A. True True सही सही
B. False True गलत सही
C. False False गलत गलत
D. True False सही गलत