You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
geo-dht/randomLocation.py

9 lines
180 B
Python

import random
def create_location():
longitude = round(random.uniform(-180.0, 180.0), 1)
latitude = round(random.uniform(-90.0, 90.0), 1)
return latitude, longitude