This is mainly due to a simple syntax error. You cannot assign values to python variables like this. I think the syntax you are looking for is this:
a, b = 2, 4
Or you can also do it like this:
a = 2
b = 4
To learn more about Python in depth you can watch this video on YouTube: