r, g, b, *a = img_list[generated_number]
What does this means in python3? I'm porting the stegano library to python 2 (since burgled-batteries has trouble with libraries in python3 while importing from sbcl).
Is there a way of converting this notation to python 2 notation (like how type annotation can be overcome with import typing
and x.__annotations__ = {}
)? More generally, what is this supposed to signify? Since it raises a syntax error when run on python 2.
Thanks!