Python
Endless丶Go
游戏服务器研发
展开
-
Python的简单输出
Python 3.X print输出内容时需要加括号,如下所示,否则会报错 "SyntaxError: Missing parentheses in call to 'print'"。上网查过之后发现2.X不需要加括号,而在3.X版本里,print变成了function,所以需要加括号。详细查看http://wenku.baidu.com/view/2eda64d476a20029bd原创 2017-02-18 19:45:04 · 832 阅读 · 0 评论 -
Python编译出现错误SyntaxError: Non-ASCII character '\xe7' 时解决方法
当在Python 2.X文件中写中文注释或输出中文时候,经常会出现编译错误(在Python 3.X中没有这种错误。):SyntaxError: Non-ASCII character '\xe7' in file E:\EclipseWorkspace\ImoocCrawler\test\test_urllib2.py on line 5, but no encoding declared;原创 2017-02-25 16:45:42 · 20014 阅读 · 1 评论 -
光标变成黑块变粗 影响插入 解决方法
正在编写代码的时候,忽然发现eclipse光标变粗了,影响在括号中插入代码。遇到这种情况怎么办呢?解决办法如下:遇到这种情况应该是你不小心按到了insert键,只要再按一下insert键就会恢复正常了。如下图:按下insert键光标就变成两个字符长度,再按下恢复正常不仅是eclipse,sql,word和myeclipse中等等都是这样的 这是光标的一种调节功能.转载 2017-02-24 20:50:25 · 7642 阅读 · 0 评论 -
Python列表List保存对象的指针
突然发现Python中列表(list)的一些有意思的设计:# coding:utf-8a = [[1,2,3],[4,5,6],[7,8,9]]print 'a : 'print ab = aprint 'b : 'print ba[0][0]=10a[0][1]=10a[0][2]=10print 'a修改过后,b取值 : 'print b结果为:可以原创 2017-03-03 15:26:51 · 9136 阅读 · 0 评论 -
Eclipse Debug 界面应用详解——Eclipse Debug不为人知的秘密
今天浏览csdn,发现一文详细的描述了Eclipse Debug中的各个知识点,非常详尽!特此记录。Eclipse Debug不为人知的秘密http://blog.csdn.net/mgoann/article/details/7239492Debug视图 认识debug视图,红色部分框为线程堆栈视图,黄色部分框为表达式、断点、变量视图,蓝色部分为代码视图。 线程堆栈视图转载 2017-02-23 12:30:50 · 295 阅读 · 0 评论 -
Python raw字符串(raw strings)
转自http://blog.sina.com.cn/s/blog_6a6c136d0102wzrj.html注:以前会用path= r'C:\Users\Belter\Desktop\temp'的方式来表示windows下的路径,只知道不用修改成path ='C://Users//Belter//Desktop//temp',也不会报错。最近才发现,用r''的方式表示的字符串叫做raw转载 2017-02-21 13:53:08 · 13560 阅读 · 3 评论 -
python字符串中的单双引号及转义解释
转自http://blog.csdn.net/zyz511919766/article/details/22668077python中字符串可以(且仅可以)使用成对的单引号、双引号、三个双引号(文档字符串)包围:'this is a book' "this is a book""""this is a book"""可在单引号包围的字符串中包含双引号,三引号等,但不能包转载 2017-02-28 21:46:14 · 11809 阅读 · 0 评论 -
Windows下Anaconda的安装和简单使用
转自http://blog.csdn.net/dq_dm/article/details/47065323Anaconda is a completely free Python distribution (including for commercial use and redistribution). It includes over 195 of the most popular转载 2017-02-18 20:35:48 · 318 阅读 · 0 评论 -
Python报错"undefined variable from import:"
第三方包引入时,eclipse默认会把一些包定为错误的,错误是:“undefined variable from import...” 其实是对的,可是报错,很烦人解决方法:window -- preferences -- pydev -- editor -- code analysis -- Undefined -- undefined variable from impor转载 2017-02-18 20:31:20 · 2776 阅读 · 0 评论 -
输出HTML,浏览器打开时还是乱码问题的解决
在编写将中文输出到html时候,不仅要在输出时生成uft-8编码的网页,如下两句的encode('utf-8'):fout.write("%s" % data['title'].encode('utf-8'))fout.write("%s" % data['summary'].encode('utf-8'))在浏览器读取原内容时也应该设置为utf-8格式,否则会乱码,如下句:原创 2017-02-26 10:24:33 · 605 阅读 · 0 评论