I have a .csv file which looks something like this:
-73.933087,40.6960679
-84.39591587,39.34949003
-111.2325173,47.49438049
How can I read that .csv file in python to get format like this(2 numbers between quotes seperated by comma):
numbers = ["-73.933087,40.6960679",
           "-84.39591587,39.34949003",
           "-111.2325173,47.49438049"]
I managed to load .csv in list, but I formatting is the problem.
import csv
with open('coordinates.csv', newline='') as f:
    reader = csv.reader(f)
    my_list = list(reader)
print(my_list)
input("Press enter to exit.")
Where I get output like this:
[['-73.933087', '40.6960679'], 
['-84.39591587', '39.34949003'], 
['-111.2325173', '47.49438049']]
So I need to remove single quotes here, and to change square brackets for double quotes.
 
     
    