I am fairly new to python. I was trying to store raw input to an empty list. And apparently, the input didn't go into the empty list. Then what went wrong?
Latitude = []
Longitude = []
print Latitude #**THIS GIVES []**
Lat_input = raw_input("What is your latitude:")
Latitude = Latitude.append(Lat_input)
print Latitude # **HERE I GOT NONE**
Long_input = raw_input("WHat is your longitude:")
Longitude = Longitude.append(Long_input)
I looked up some other postings, still didn't figure out what I did wrong. What did I miss? Why is my list gone? Thanks, guys!