Writing an application that needs to build a bounding box. The box is built by obtaining the South West corner and the North East corner of the desired box. The application is expecting this code in the format of xx.xxx,xx.xxx.
Started with this for example:
southwest_corner = float(raw_input("Enter the SW corner values: "))
But it does not accept the fact that it has the comma and second value. (remember xx.xxx,xx.xxx) I also tried it as a string instead of a float, but still no-go.
How do I allow the user to input the format I want and it properly take it?