Is there an alternative to = sign in python? For example, += can be substituted by __iadd__. In R, both <- and = can be used. Is there such an alternative for =?
Here is the reason for my asking:
File "<ipython-input-14-6ea5b5c012fa>",
line 37 print("Downloading:", year, "Q%d" % quarter, end = " | ")
^
SyntaxError: invalid syntax
I could not find the same question in Stack.