Something like that should do the work:
import numpy as np
step = 2*pi / 20
time = np.arange(0,2*pi + step,step)
x_range = np.sin(time)
new_list = list()
for i in x_range:
new_list.append(i)
new_list.append('m')
new_list.append('np')
print(new_list)
Just build a new list and add to it the value followed by the other two characters that you want and repeat the process for each value using for loop.
The output from the above code will be:
[0.0, 'm', 'np', 0.3090169943749474, 'm', 'np', 0.5877852522924731, 'm', 'np', 0.8090169943749475, 'm', 'np', 0.9510565162951535, 'm', 'np', 1.0, 'm', 'np', 0.9510565162951536, 'm', 'np', 0.8090169943749475, 'm', 'np', 0.5877852522924732, 'm', 'np', 0.3090169943749475, 'm', 'np', 1.2246467991473532e-16, 'm', 'np', -0.3090169943749473, 'm', 'np', -0.587785252292473, 'm', 'np', -0.8090169943749473, 'm', 'np', -0.9510565162951535, 'm', 'np', -1.0, 'm', 'np', -0.9510565162951536, 'm', 'np', -0.8090169943749476, 'm', 'np', -0.5877852522924734, 'm', 'np', -0.3090169943749477, 'm', 'np', -2.4492935982947064e-16, 'm', 'np']