'convert 'django.contrib.gis.geos.point.Point' object into coordinates in Django

I heve a model Location where I have such fields as: location_id, city, address, point. I using 'django.contrib.gis.geos.point.Point'. In my database in a column named point HEX point representation is laying. It is looks like: 0101000020E6100000644ADA43B1FF374026EE6767872E2A40. It is a fake location. The question is: how can I I get just coordinates like: (23.9987986 13.0908768)???? Now I can get only Point object like SRID=4326;POINT (23.9987986 13.0908768) using for cycle. Can any one help???



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source