DEV Community

DDSRY
DDSRY

Posted on • Updated on

Can we write a=21 instead of a = 21 in Python 3.8 ?

▪ Yes,

▪ You can, but a=21 its bad form.

▪ You should add space around operator like this a = 21 so that it's easier to read.

Top comments (0)