You can iterate over the list to add a prefix to all of its elements. Since you want to add a string as the prefix, the resulting list will contain strings instead of numbers.
Here is an example:
>>> a=[10, 20, 30, 40]>>> a=['n_' + str(j) for j in a]>>> a['n_10', 'n_20', 'n_30', 'n_40']