I was wondering if there is a decent way to avoid repeating "IGNORED" when assigning it to multiple values in python, something like *"IGNORED" maybe:
raw_size, size, content_type, last_modified, error = "IGNORED", "IGNORED", "IGNORED", "IGNORED", {}
I got this link but it was not quite the answer I was looking for.
raw_size = size = content_type = last_modified = error = "IGNORED"? orraw_size, size, content_type, last_modified = ('IGNORED',) * 4?errorshould be a different value, i.e.{}a, b, c, d = ('IGNORED',) * 3 + ({},)a, b, c, d = ('IGNORED',) * 3 + ({},)works fine, Thanks. And I would be thankful if you tell me why that doesnt appear good.