Skip to content

Instantly share code, notes, and snippets.

@arukavina
Created April 14, 2018 18:40
Show Gist options
  • Save arukavina/4e35a281d7ceecf3309a130a6f7c2fbf to your computer and use it in GitHub Desktop.
Save arukavina/4e35a281d7ceecf3309a130a6f7c2fbf to your computer and use it in GitHub Desktop.
Python header shebang examples
#!/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