测试python一秒能添加多少个数据
本帖最后由 叼辣条闯世界 于 2021-1-1 21:01 编辑首先先定义一个列表
a = 0
b = []
然后
while True:
b.append(a)
a += 1
一秒后Ctrl C强制终止,
用len函数查看长度
len(b)
哈哈
注意:
一定不能直接print(b)!!!!!!!! 有啥意义呢 你如何实现精确一秒按下ctrl+c的,按得准吗
import _thread
import time
a = 0
b = []
# 为线程定义一个函数
def tt():
global a, b
while True:
b.append(a)
a += 1
# 创建独立线程
try:
_thread.start_new_thread(tt,())
time.sleep(1)
print(len(b))
except:
print ("Error: 无法启动线程")
页:
[1]