def test():
    var1 = "hello"
    var2 = "world"
    print(f"This is just a test so i dont know? Im gonna spam some word to it exceeds 80 characters maybe. is this more than enough already? Okay maybe. Just wanted to say, {var1}, {var2} to everyone!"
How do I break the print statement? If I break it using \ like below, it'll print out white spaces too.
def test():
    var1 = "hello"
    var2 = "world"
    print(f"This is just a test so i dont know? Im gonna spam some word to it exceeds \
                        80 characters maybe. is this more than enough already? Okay maybe. \
                        Just wanted to say, {var1}, {var2} to everyone!"
 
    