Python源码中文注释出错

在Python源码中使用中文注释,可能会报错,解决方案是: 

  1. # coding=gb2312   
  2.   
  3. #中文注释在这里   
  4. print("Hello World!")  

或者使用方案:

  1. # -*- coding: gb2312 -*-   
  2.   
  3. #中文注释在这里   
  4. print("Hello World!")  

相关推荐