hi, newbie to Flask, have this prob: basic returns seem to work ok if converted to a string:
ex:
a = [1,2,3,4,5,6]
def list1():
return str(a[::-1])
this gives me: [6, 5, 4, 3, 2, 1] in the url
but how to just return a list or integer without having to convert to str first?