I have a string:
myStr = "Chicago Blackhawks vs. New York Rangers"
I also have a list:
myList = ["Toronto Maple Leafs", "New York Rangers"]
Using the endswith() method, I want to write an if statement that checks to see if the myString has ends with either of the strings in the myList. I have the basic if statement, but I am confused on what I should put in the parentheses to check this.
if myStr.endswith():
print("Success")
endswith()
accepts a tuple of suffixes. You can either convert your list to a tuple or just use a tuple in the first place instead of list.From doc: