我想重复我的代码x时间,该怎么办?

时间:2019-01-29 10:27:18

标签: python

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)

2 个答案:

答案 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):...