使用这套代码,输出的结果是a和b参数混在一起的
但是我想要的结果如下:
1 a
2 aa
我该怎么修改呢
import random
import _thread as thread
from time import sleep
def fun(a,b):
print(a,b)
sleep(random.randint(1,5))
for i in range(4):
thread.start_new_thread(fun,(i+1,'a'*(i+1)))
input()