python threading 用法
Posted 姜小嫌
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python threading 用法相关的知识,希望对你有一定的参考价值。
python 多线程传参有点奇怪记录一下
import thread
sql1 = 'select 1'
sql2 = 'select 2'
def run(sql):
print sql
# 说明 target 后面是方法面 而参数要写在args里面并且要多一个逗号
if __name__ == '__main__':
t1 = threading.Thread(target=execute, args=(sql1,))
t2 = threading.Thread(target=execute, args=(sql2,))
t1.start()
t2.start()
以上是关于python threading 用法的主要内容,如果未能解决你的问题,请参考以下文章
Python线程的用法 函数式线程_thread和threading 样例
Python 中的 Pythonic 用法或下划线(私有)名称