import time
import ctypes
for count in (3000):
def Mbox(title, text, style):
return ctypes.windll.user32.MessageBoxW(0, text, title, style)
Mbox('Virus detected', 'Would you like to run your anti-viruse software?',6)
答案 0 :(得分:2)
这将为您工作。
import time
import ctypes
def Mbox(title, text, style):
return ctypes.windll.user32.MessageBoxW(0, text, title, style)
for count in range(3000):
print(Mbox('Virus detected', 'Would you like to run your anti-viruse software?',6))
答案 1 :(得分:0)
使用功能range(3000)
。它会返回一个列表,其中包含从1到3000的所有数字。该列表可在for语句中使用,例如:for index in range(3000):...