2015年12月26日

python sys.exit()函数说明

摘要: sys.exit()函数是通过抛出异常的方式来终止进程的,也就是说如果它抛出来的异常被捕捉到了的话程序就不会退出了。#!/usr/bin/python#!coding:utf-8import sysif __name__=="__main__": try: sys.exit(10... 阅读全文

posted @ 2015-12-26 15:55 蒋乐兴的技术随笔 阅读(1849) 评论(0) 推荐(0) 编辑

python中实现多线程的几种方式

摘要: python实现多线程的方式大概有 1、threading 2、_thread#!/usr/bin/python#!coding:utf-8import threadingdef action(msg): print '这个进程是通过 {0} 方式实现的'.format(msg)class... 阅读全文

posted @ 2015-12-26 14:53 蒋乐兴的技术随笔 阅读(776) 评论(0) 推荐(0) 编辑

python threading 模块来实现多线程

摘要: 以多线程的方式向标准输出打印日志#!/usr/bin/pythonimport timeimport threadingclass PrintThread(threading.Thread): def __init__(self,threadid,count,mutex): th... 阅读全文

posted @ 2015-12-26 14:22 蒋乐兴的技术随笔 阅读(275) 评论(0) 推荐(0) 编辑

导航