Is there a difference between
(a) defining the encoding with the shebang
#!/usr/bin/env python -*- coding: utf-8 -*-
(b) defining the shebang and the encoding on separate lines?
#!/usr/bin/env python
#-*- coding: utf-8 -*-
Is there a difference between
(a) defining the encoding with the shebang
#!/usr/bin/env python -*- coding: utf-8 -*-
(b) defining the shebang and the encoding on separate lines?
#!/usr/bin/env python
#-*- coding: utf-8 -*-