1. 首页
  2. 数据库
  3. 其它
  4. python 串行执行和并行执行实例

python 串行执行和并行执行实例

上传者: 2020-12-23 01:17:30上传 PDF文件 75KB 热度 31次
我就废话不多说了,大家还是直接看代码吧! #coding=utf-8 import threading import time import cx_Oracle from pprint import pprint import csv print time.asctime() table_name = "dbtest.csv" f = open(table_name + ".csv", "w") conn = cx_Oracle.connect('tlcbuser/tlcbuser@20.5.101.31/tlyy') cursor = conn.cursor() def query01()
用户评论