Sometimes you may want someone to enter multiple input in one line,like scanf in C++/C you can’t take multiple values using only input() function. To do this you need to use split() method. The split method’s syntax : input().split(separator,maxsplit) It…
