i want to insert variables date and month inside string
filename = f'C:\Users\91956\Desktop\{date}{month}.csv.zip'
i get error
^
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
i think the string need to be a raw string i.e i need to write r' before string but by doing so i am unable to insert variables in string
how to do this?