小恐龙
玩法:通过上下控制起跳来躲避障碍。
编程语言:Python
主要库:pygame
示例代码:
```python
import pygame
from modules import *
def main(highest_score):
pygame.init()
screen = pygame.display.set_mode(cfg.SCREENSIZE)
pygame.display.set_caption('九歌')
sounds = {}
for key, value in cfg.AUDIO_PATHS.items():
sounds[key] = pygame.mixer.Sound(value)
while True:
flag, highest_score = main(highest_score)
if not flag:
break
```
消消乐
玩法:三个相连的相同图案即可消除。
编程语言:Python
主要库:pygame
示例代码:
```python
import pygame
from modules import *
def main():
pygame.init()
screen = pygame.display.set_mode(cfg.SCREENSIZE)
pygame.display.set_caption('Gemgem —— 九歌')
pygame.mixer.init()
pygame.mixer.music.load('background_music.mp3')
pygame.mixer.music.play()
游戏主逻辑
```
猜数字游戏
玩法:玩家猜一个随机生成的数字,程序给出提示直到猜对。
编程语言:Python
主要库:random
示例代码:
```python
import random
def main():
target_number = random.randint(1, 100)
attempts = 0
while True:
try:
guess = int(input("猜一个1到100之间的数字:"))
except ValueError:
print("请输入一个有效的数字。")
continue
attempts += 1
if guess == target_number:
print(f"恭喜你,猜对了!数字是 {target_number}。你用了{attempts}次尝试。")
break
elif guess < target_number:
print("猜低了。")
else:
print("猜高了。")
if __name__ == "__main__":
main()
```
拼词游戏
玩法:显示一个打乱的单词,用户需要重新拼出正确的单词。
编程语言:Python
主要库:无特定库,但可以使用字符串操作和算法。
示例代码:
```python
import itertools
def main():
word = "python"
shuffled_word = ''.join(random.sample(word, len(word)))
print(f"拼出以下单词:{shuffled_word}")
while True:
guess = input("请输入你猜测的单词:").lower()
if guess == shuffled_word:
print("恭喜你,拼对了!")
break
else:
print("猜错了,请再试一次。")
if __name__ == "__main__":
main()
```
打飞机游戏
玩法:玩家控制飞机消灭敌机。
编程语言:Python
主要库:pygame
示例代码: