You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is an operator in Python similar to /=. Since // is integer division (divide by and discard any remainder), //= is used to do this in place. This might not be very common to see, but would be nice for completeness. Thanks!
The text was updated successfully, but these errors were encountered:
This is an operator in Python similar to
/=
. Since//
is integer division (divide by and discard any remainder),//=
is used to do this in place. This might not be very common to see, but would be nice for completeness. Thanks!The text was updated successfully, but these errors were encountered: