Given a list of strings, return a new list where each string is converted to uppercase.
["hello", "world", "python"]
["HELLO", "WORLD", "PYTHON"]
Bot