This backslash means “joint”. So, the code which is front of this backslash is jointed with the code which is back of the backslash.
For exampleโฆ
print('Hello, \
world!')
above code is totally same with following code.
print('Hello, world!')
This backslash is usually used when you want to divide your chunk of long code which you can’t write just one row at once.