
python
文章平均质量分 57
lybacm
这个作者很懒,什么都没留下…
展开
-
eclipse+pydev中文问题
eclipse+pydev 在linux下是有中文问题的,会提示: SyntaxError: Non-ASCII character '\xe7' in file /media/编程/Eclipse3_6/linux_ws/pythonTestOnLinux/src/test/test.py on line 43, but no encoding declared; see http://...原创 2011-05-18 16:08:27 · 184 阅读 · 0 评论 -
python 学习笔记一
#coding=UTF-8'''Created on 2011-5-18@author: lingyibin'''import typesimport mathprint 'hello'#appenda = [1,2,3,4,5,6]a.append([2,4])print a[6][1]print a;#extenda...原创 2011-05-18 21:37:18 · 250 阅读 · 0 评论 -
python学习笔记三(类自定义属性 方法)
#encoding=UTF-8'''Created on 2011-5-26@author: Administrator'''#静态变量class A: count=0 def __init__(self): self.__class__.count+=1 #把它当全局变量来用print A.counta...原创 2011-05-26 19:51:57 · 328 阅读 · 0 评论