Split Strings Python
def split_line(txt): print(txt.split(" ")) text = "Hello World" split_line(text)