Informatics Practices

What would the following code do?

a = b = 70

Python Funda

2 Likes

Answer

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

Answered By

3 Likes


Related Questions