Does someone know how to do an input like that:
input("Enter a word and a number: ")
and in the console we write:
Enter a word and a number: hello 14
It reconize it like [word] [number].
Does someone know a "cheat" to do something like that ?
(sorry for the bad explanation)
>Solution :
w, n = input("Enter a word and a number:").split(' ')