Question: Once the code below is done executing, what will be the contents of t 2 . cargo? class Truck: def _ ( self ) :

Once the code below is done executing, what will be the contents of t2.cargo?
class Truck:
def _(self):
self.cargo =[]
t1= Truck ()
12= Truck ()
t1.cargo.append("Apples")
t1.cargo.append("Bananas")
t2.cargo.append("Figs")
t1.cargo.append("Lemons")
t2.cargo.append("Mangos")
t2.cargo.append("Oranges")
t1.cargo.append("Tangerines")
['Figs', 'Mangos', 'Oranges']
['Apples', 'Bananas', 'Figs', 'Lemons', 'Mangos', 'Oranges', 'Tangerines']
['Apples', 'Bananas', 'Lemons', 'Tangerines']
[]
Once the code below is done executing, what will

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!