/ Published in: Python
A simple skeleton for python scripts with utf-8 encoding
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#!/usr/bin/env python # encoding: utf-8 def main(): pass if __name__ == '__main__': main()