Tester.py

def modify(the_list):
    the_list[0] = the_list[0].replace("10", "0")
    return the_list
def main():
    outer_list = ["I have watched 10 movies."]
    print(outer_list[0])
    modify(outer_list)
    print(outer_list[0])
    outer_list = modify(outer_list)
    print(outer_list[0])
main()
What is the output?
Be careful of the whitespace(space,newline) in your answer.