I have a list of floats as such:
list_of_numbers = [6.983508046396359, 3.1427777550591887, -24.42539243473745]
I wish to assign the list of floats into individual variables as such
w1 = 6.983508046396359
w2 = 3.1427777550591887
w3 = -24.42539243473745
How do i go about assigning them into the desired variables?