只需一行Python程式碼即可玩20幾款小遊戲

Python小二發表於2022-05-24

今天分享一個有趣的 github 專案:https://github.com/kingser/free-python-games,通過該專案,我們只需一行程式碼即可玩 20 幾款小遊戲,下面具體來看一下。

安裝

首先,我們進行安裝,安裝很簡單,只需一行命令即可:pip install freegames

使用

安裝完成之後,我們使用命令:python -m freegames list檢視一下可玩的遊戲列表,如下所示:

ant
bagels
bounce
cannon
connect
crypto
fidget
flappy
guess
life
madlibs
maze
memory
minesweeper
pacman
paint
pong
simonsays
snake
tictactoe
tiles
tron

小遊戲的執行(啟動)使用命令:python -m freegames.遊戲名,下面通過示例具體看一下。

python -m freegames.snake

python -m freegames.pacman

python -m freegames.flappy

python -m freegames.connect

python -m freegames.cannon

python -m freegames.memory

python -m freegames.pong

python -m freegames.simonsays

python -m freegames.tictactoe

python -m freegames.tiles

python -m freegames.tron

python -m freegames.life

python -m freegames.maze

python -m freegames.fidget

好了,這裡就不一一列舉了,有興趣的小夥伴可以自己動手試試。

相關文章