How can I remove a trailing newline in Python?

I have a string that ends with a newline character \n. How can I remove this newline character from the end of the string?

Here’s the code that I’m using:

This code seems to remove the newline character from the end of the string. However, I’m not sure if this is the best or most efficient way to do it. Can someone help me verify if this is the correct approach or suggest an alternate solution if there is one? Thank you for any help you can provide.