Computer Science, asked by malleshamka, 6 months ago

Comment: autograded

seqmut-1-4: What will be the value of a after the following code has executed?

a = ["holiday", "celebrate!"]
quiet = a
quiet.append("company")
The value of a will be

Answers

Answered by rodriguesronak
7

Answer:

40680

Explanation:

please follow me

Answered by nana30072003
2

Answer:

The answer is : ["holiday", "celebrate!", "company"]

Explanation:

"company" is added at the end of the list because of the append function.

Similar questions