how to take input in python as string and convert into integer list

Solutions on MaxInterview for how to take input in python as string and convert into integer list by the best coders in the world

showing results for - "how to take input in python as string and convert into integer list"
Owen
23 Jul 2020
1l=list(map(int,input().split()))