Skip to content

Instantly share code, notes, and snippets.

@etigui
Created May 14, 2019 09:41
Show Gist options
  • Select an option

  • Save etigui/db8287e621951e4ed72dcf4e383d22bf to your computer and use it in GitHub Desktop.

Select an option

Save etigui/db8287e621951e4ed72dcf4e383d22bf to your computer and use it in GitHub Desktop.
Generating lowercase alphabet in Python (Google earth paddle)
import string
def main():
for s in string.ascii_uppercase:
print(f'http://maps.google.com/mapfiles/kml/paddle/{s}.png')
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment