I want to take strings from the user without any limit and pass it into a function as different parameters for e.g
user_input = "Hello World! It is a beautiful day."
I want to pass this string split by spaces as parameters into a function i.e
func("Hello", "World!", "It", "is", "a", "beautiful", "day.")
And I cannot pass a list or tuple, it has to be multiple strings. I am new to python, sorry if the solution is very simple