Created
May 14, 2019 09:41
-
-
Save etigui/db8287e621951e4ed72dcf4e383d22bf to your computer and use it in GitHub Desktop.
Generating lowercase alphabet in Python (Google earth paddle)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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