下载链接:https://pan.baidu.com/s/1bwj2GQM1CbO1x2EIC-ZF6g?pwd=8888
提取码:8888
项目名称:
Chinese Chess Xiangqi 中国象棋 Python
Python 图形化麻将游戏 (带蒙特卡洛AI)
python做的一个足球小游戏
python做的坦克大战游戏
python做的扑克游戏
python入侵小游戏
python命令行小游戏,汤姆猫
python实现扫雷小游戏
python实现笨鸟先飞小游戏
python实现简易斗地主小游戏
python小游戏2048
Python带界面数独游戏
Python玛丽冒险游戏
Python简版推箱子游戏
python自制游戏坦克动荡
python项目 迷宫游戏
unity3d制作的军棋联网对战游戏
ython实现生命游戏
一个用python写的射击游戏
中国象棋python3版本
中国象棋python实现+ab剪枝+GUI+普通人棋力
仙剑奇侠传二战棋版,pythonpygame开发
使用 Python 和 Pygame 开发《星露谷物语》 游戏
基于pgzero的一款用python编写开发的AVG小游戏
基于Pygame编写的Python小游戏绿皮猪入侵
基于python的坦克小游戏
基于python的打砖块游戏
外星人小游戏(Python
小恐龙游戏,在python 3.7下执行,需要先安装pygame模块
小飞机游戏
弹棋游戏(python + pygame)
微信小游戏跳一跳
import os
import shutil
def void_folder(path):
# 访问path路径下的文件或文件夹
lst = os.listdir(path)
# 打印每一层的文件或文件夹
for name in lst:
# 拼接名称,得到绝对路径,判断该文件是否符合是文件夹
real_path = os.path.join(path, name)
# 如果是文件夹,则打空格表示,并且递归访问下一层
if os.path.isdir(real_path):
# print(name)
files = os.listdir(real_path)
if len(files) == 0:
print("void_folder():"+name)
shutil.rmtree(real_path)
endindex = len(real_path) - len(name)
real_path = real_path[0:endindex]
void_folder(real_path)
else:
void_folder(real_path)
# 如果不是文件夹,直接打印,不再递归访问下一层
else:
#print(name)
pass
def void_file(dirPath):
dirs = os.listdir(dirPath) # 查找该层文件夹下所有的文件及文件夹,返回列表
for file in dirs:
file_full_name = dirPath + '/' + file
file_ext = os.path.splitext(file_full_name)[-1]
if file_ext is None or file_ext=="":
continue
愤怒的小鸟
成语接龙游戏的python实现
斗地主记牌器
水果忍者
游戏《flappy bird》python实现
用Python制作的MUD游戏
用Python制作的五子棋程序(人机对抗)
由python制作的游戏大厅,没有用任何第三方库
象棋巫师(非官方)python实现
学习知识费力气,
收集整理更不易。
知识付费甚欢喜,
为咱码农谋福利。
感谢您的支持