i want to create the following string: Plots\0_test.png
The 0 is in variable i. I code this:
path = 'Plots' + '\\' + str(i) + '_test.png'
and I get the following string: Plots\\0_test.png
I don't know, what is the fault. I hope you can help me.