I am making a discord bot using python.
I have a function
def search(userName):
# ...
but the userName MAY contain spaces
Eg.
Enter userName: Me Head
and I want the function to read bot arguments given and join them together so it forms "MeHead"
Currently if I try to run my search(userName)
function with two inputs it will just take the first input so
Enter userName: Me Head
will just run search("Me")
and ignore anything after that first input