SyntaxFix
Write A Post
Hire A Developer
Questions
since python 3.5 you can use * iterable unpacking operator:
*
user_list = [*your_iterator]
but the pythonic way to do it is:
user_list = list(your_iterator)