分享

趣味python | 介绍一款python经典游戏库,一行代码就能玩python游戏

 Python集中营 2022-10-10 发布于甘肃

安装游戏库

 1# 游戏库
2
3pip install freegames
4
5# 查看所有游戏
6
7python -m freegames list
8
9# C:\Users\Administrator>python -m freegames list
10# ant
11# bagels
12# bounce
13# cannon
14# connect
15# crypto
16# fidget
17# flappy
18# guess
19# life
20# maze
21# memory
22# minesweeper
23# pacman
24# paint
25# pong
26# simonsays
27# snake
28# tictactoe
29# tiles
30# tron

贪吃蛇

1'''
2贪吃蛇
3'''

4# 说明:上、下、左、右控制方向
5
6python -m freegames.snake

吃豆子

1'''
2吃豆子
3'''

4# 说明:上、下、左、右控制方向
5
6python -m freegames.pacman

飞翔的小鸟

1'''
2飞翔的小鸟
3'''

4# 说明:单机屏幕操作
5
6python -m freegames.flappy

五子棋

1'''
2五子棋
3'''

4# 说明:单机屏幕操作
5
6python -m freegames.connect



关注 Python集中营
领取编程干货
培养编程思想

    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多