+ 1
Please tell me a little bit about unpac operator '*'---
4 ответов
+ 1
+ 2
Ok thanks for answering!Dariyoush Shiri
+ 2
Thank you very much for helping!😊HonFu [#GoGetThatBugChamp!]
+ 1
It represents the elemnts of an iterable if put in the left side.
E.g
a = [ 1, 2, 3]
Now you can pass it to a function by *a
It unpacks what's inside a list or tuples or what have you.