Ever seen this in Python? if ( n : = len ( " Hello " )) > 3 : print ( n ) That := is the Walrus Operator It lets you assign a value AND use it in the same expression . Instead of: name = input ( " Name: " ) while name : print ( name ) name = input ( " Name: " ) You can write: while ( name : = i...
Source: [Dev.to](https://dev.to/junee1206/pythons-operator-is-tiny-but-surprisingly-powerful-29hn)