Is this jinja array or list if it starts with [u' ?

Hi,

I tried to convert a hash to a list. When I try to debug my list its showing

“msg”: " [u’value1’, u’value2’]\n"

Looks like an array to me. What kind of object is this? Can i convert this back to list? I tried to do us append(value) in a loop to build this value array

Regards,
Abey

Array and List are 2 different names for the same thing, what you are
seeing is an array/list of unicode strings (leading u' ' in front of
string means its unicode in Python).