__MagicPower
Do one thing and do it best!

导航

 

2015年12月21日

摘要: #!/usr/bin/env python#Simple server -Chapter 1 -server.pyimport sockethost = ''port = 51423s = socket.socket(socket.AF_INET,socket.SOCK_STREAM)s.setso... 阅读全文
posted @ 2015-12-21 12:15 __MagicPower 阅读(127) 评论(0) 推荐(0) 编辑
 

2015年12月20日

摘要: 1.what do we need? sox2.how to install? sudo brew install sox (you can also download sox from sourceforge,but probably you may come into some depend... 阅读全文
posted @ 2015-12-20 18:44 __MagicPower 阅读(149) 评论(0) 推荐(0) 编辑
 
摘要: 一、没有线程的支持的例子: #!/usr/bin/env pythonfrom time import sleep,ctimedef loop0(): print 'start loop 0 at:',ctime() sleep(4) print 'loop 0 done at:',ctime()... 阅读全文
posted @ 2015-12-20 16:13 __MagicPower 阅读(130) 评论(0) 推荐(0) 编辑
 

2015年12月11日

摘要: 1.Why? 网上写的教程都参差不齐,所以自己写了一下纯粹当做笔记。2.How? 1).打开网址:http://github.com/mxcl/homebrew/tarball/master 会自动将一个名字为"Homebrew-homebrew-2871e09.tar"下载下来 2).... 阅读全文
posted @ 2015-12-11 10:16 __MagicPower 阅读(292) 评论(0) 推荐(0) 编辑
 

2015年12月10日

摘要: Whether you use the Terminal occasionally or regularly, you might find it appropriate to change the way it looks beyond the color scheme and transpare... 阅读全文
posted @ 2015-12-10 14:09 __MagicPower 阅读(510) 评论(0) 推荐(0) 编辑
 
摘要: #!/usr/bin/env python #--*-- coding:utf-8 --*--#version one"""from random import randintdef odd(n): return n%2allNums = []for eachNum in range(9): ... 阅读全文
posted @ 2015-12-10 13:48 __MagicPower 阅读(169) 评论(0) 推荐(0) 编辑
 

2015年12月6日

摘要: #!/usr/bin/env python#--*-- coding:utf-8 --*--#safe_float 的函数主体def safe_float(obj): 'safe version of float()' try: retval = float(obj) ... 阅读全文
posted @ 2015-12-06 16:49 __MagicPower 阅读(236) 评论(0) 推荐(0) 编辑
 

2015年12月4日

摘要: #!/usr/bin/python#--*-- coding:utf-8 --*--"""此程序管理用于登陆系统的用户信息:登陆名字和密码。登陆用户账号建立后,已存在用户可以用登陆名字和密码重返系统。新用户不能用别人的登录名建立用户账号"""db = {}def newuser(): prom... 阅读全文
posted @ 2015-12-04 20:37 __MagicPower 阅读(252) 评论(0) 推荐(0) 编辑
 

2015年12月3日

摘要: >>>list1,list2 = [123,'xyz'],[456,'abc']>>>cmp(list1,list2)-1>>>cmp(list2,list1)>>>1>>>list3 = list2 + [789]>>>list3[456,'abc',789]>>>cmp(list2,list3)... 阅读全文
posted @ 2015-12-03 09:39 __MagicPower 阅读(218) 评论(0) 推荐(0) 编辑
 

2015年12月2日

摘要: #!/usr/bin/env python#--*-- coding:utf-8 --*--'''An example of reading and writing Unicode string :Writes a Unicodestring to a file in utf-8 and reads... 阅读全文
posted @ 2015-12-02 20:38 __MagicPower 阅读(166) 评论(0) 推荐(0) 编辑