I have the file path
say='5.0'
output_path=r'C:\User\Projects\'+ say
I get an error message.
SyntaxError: EOL while scanning string literal
UPDATE!!! I also tried doing this from your suggestions but it did not work as well
output_path=r'C:\User\Projects\\'+ say
I get the string as
'C:\\User\\Projects\\\\\5.0
I want the output_path to basically be
C:\User\Projects\5.0