Created
April 14, 2018 18:40
-
-
Save arukavina/4e35a281d7ceecf3309a130a6f7c2fbf to your computer and use it in GitHub Desktop.
Python header shebang examples
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
#!/usr/bin/python | |
# -*- coding: latin-1 -*- | |
import os | |
… | |
#!/usr/bin/python | |
# -*- coding: iso-8859–15 -*- | |
import os | |
… | |
#!/usr/bin/python | |
# -*- coding: ascii -*- | |
import os | |
… |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment