Computer Science, asked by sribalakrishnatex831, 4 months ago

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 vanshita1981
3

Answer:

["apple", "banana", "cherry"]

[1, 5, 7, 9, 3]

[True, False, False]

Answered by cuteattitudegirl
1

Answer:

true

false

false

Explanation:

Mark as brainlist answer

Similar questions