在python中进行输入输出中文或者添加中文注释,需要在伴释的后面添加中文编码的代码:
1 #!/usr/bin/python 2 # -*- coding: UTF-8 -*- 3 class c: 4 name="zhangsan"; 5 age =11; 6 def sayHello(self): 7 print self.age; 8 print self.name; 9 myHello = c(); 10 myHello.sayHello();
时间: 2024-10-12 21:34:05