Informatics Practices

What would the following code do?

a = b = 70

Python Funda

3 Likes

Answer

The above code performs multiple assignment, where the value 70 is assigned to both variables a and b simultaneously.

Answered By

1 Like


Related Questions