I try to use list-comprehensions see link here: https://docs.python.org/3/tutorial/datastructures.html#list-comprehensions
but it create generator instead of return list
And when I try to convert it to list- it work only once, and then the list disappear
values=[3,"fasdf",99]
vv=(str(x) for x in values)
vv
<generator object <genexpr> at 0x047D2F08>
list(vv)
['3', 'fasdf', '99']
list(vv)
[]
values
[3, 'fasdf', 99]