These statements are run in Python, after the program has run what would be the value of transport? * cars = 16 lorries = 8 transport = cars + lorries transport = 4 cars = 16 lorries = 8 transport = cars + lorries transport = 4​

These statements are run in Python after the program has run what would be the value of transport cars 16 lorries 8 transport cars lorries transport 4 cars 16 l class=

Respuesta :

transport = 4

Even though the previous line says
transport = cars + lorries

We are changing the value stored in transport to 4