I want this output in string:
[‘1’, ‘2’, ‘3’, ‘4’, ‘5’, ‘6’, ‘7’, ‘8’, ‘9’, ’10’, ’11’, ’12’, ’13’, ’14’, ’15’, ’16’, ’17’, ’18’, ’19’, ’20’]
Method one: List comprehension:
print([str(i) for i in range(1,21)])
Method two: Map method.
map(function, iterable)
print(list(map(str, range(1,21))))