SyntaxFix
Write A Post
Hire A Developer
Questions
You can try getting a list from the map object by just iterating each item in the object and store it in a different variable.
a = map(chr, [66, 53, 0, 94]) b = [item for item in a] print(b) >>>['B', '5', '\x00', '^']