how to take list of float as input in python

Solutions on MaxInterview for how to take list of float as input in python by the best coders in the world

showing results for - "how to take list of float as input in python"
Axel
02 Jan 2019
1float_list = list(map(float, input().split()))