我有一个列表,我正在尝试同时为列表中的每个项目执行一个循环。
我试过使用这段代码:
thelist = ['first', 'second', 'third']
def loop():
while True:
for x in thelist:
x = str(x)
time.sleep(5)
do_stuff_that_includes_x()
但它会按照.thelist
我希望它同时为所有项目做这些thelist
事情。
提前致谢。