I want to put an int into a string. This is what I had in mind:
end = smooth(data,window_len=40)
plot.plot(time[0:len(end)],end)
plot.savefig('hanning(40).pdf') #problem line
How do I insert a variable into a Python string as stated? Appreciate the help!