Find the output of the given Python Code.
list1 = ["apple", "banana", "cherry"]
list2 = [1, 5, 7, 9, 3]
list3 = [True, False, False]
print(list1)
print(list2)
print(list3)
Answers
Answered by
3
Answer:
["apple", "banana", "cherry"]
[1, 5, 7, 9, 3]
[True, False, False]
Answered by
1
Answer:
true
false
false
Explanation:
Mark as brainlist answer
Similar questions
English,
3 months ago
English,
3 months ago
Social Sciences,
7 months ago
Math,
1 year ago
Social Sciences,
1 year ago