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()
t2= 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")
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!