Hi, just a quick question but I couldn't find an answer to it. Say I have 3 variables, "a", "b", and "c". I want to assign each one a value of None. The only way I know of doing this is:
a, b, c = None, None, None
Is there a way to cut it back to just one instance of None because it's the same for all? Like:
a, b, c = None
The only problem is that this returns the "Too many values to unpack" error. Thanks for any help you can give!