how to unpack a tuple in this form (‘abc’, [20, 20])? [closed]

Simply:

a,b = 'abc', [20,20]

If you removed the asterix, your code would have worked

Leave a Comment