×

To install this app on your iPhone, tap Share 🔗 then Add to Home Screen.

Assigning Multiple values to Variables/Variable in Python
Python allows to assign multiple values to multiple variables in a single line as shown in Example below: x, y, z = "Bus", "Car", "Jeep"print(x)print(y)print(z) Python also allows to assign same value to multiple variables in a single line as shown in example below: x = y = z = "Vehicles"print(x)print(y)print(z)
0 Commenti 0 condivisioni 0 Anteprima
Sponsorizzato