1.猜单词游戏
import random
words = ["apple", "banana", "cherry", "date", "elderberry"]
def guess_word():
word = random.choice(words)
guessed_letters = []
attempts = 6
while attempts > 0:
display_word = ""
for letter in word:
if letter in guessed_letters:
display_word += letter
else:
display_word += "_"
print(display_word)
guess = input("请输入一个字母:")
if guess in word and guess not in guessed_letters:
guessed_letters.append(guess)
if all(letter in guessed_letters for letter in word):
print("恭喜你猜对了单词!")
break
else:
attempts -= 1
print(f"猜错了,你还有 {attempts} 次机会。")
if attempts == 0:
print(f"游戏结束,单词是 {word}")
if __name__ == "__main__":
guess_word()
猜单词游戏开发思路:
- 首先定义了一个包含可能被猜测单词的列表 words 。
- 在 guess_word 函数中,随机选择一个单词作为要猜测的目标。
- 创建一个空列表 guessed_letters 用于存储玩家已经猜对的字母。
- 设定尝试次数 attempts 。
- 在主循环中,通过遍历目标单词,根据已猜对的字母显示单词的部分内容。
- 玩家输入猜测的字母,如果猜对且未被猜过,将其加入 guessed_letters ,并检查是否已猜对整个单词。如果猜错,减少尝试次数并给出提示。
- 根据最终结果输出相应的信息。
2.数字炸弹游戏
import random
def number_bomb():
num = random.randint(1, 100)
guess = None
attempts = 10
while guess!= num and attempts > 0:
guess = int(input("请输入你猜测的数字(1 - 100): "))
attempts -= 1
if guess < num:
print("猜小了,还剩", attempts, "次机会。")
elif guess > num:
print("猜大了,还剩", attempts, "次机会。")
if guess == num:
print("恭喜你猜对了!")
else:
print("游戏结束,数字是", num)
if __name__ == "__main__":
number_bomb()
数字炸弹游戏开发思路:
- 生成一个 1 到 100 之间的随机数字作为炸弹数字 num 。
- 设定初始猜测次数 attempts 。
- 在循环中,让玩家输入猜测的数字。
- 根据玩家猜测与炸弹数字的大小关系给出提示,并相应地调整尝试次数。
- 根据最终是否猜对输出结果。
3.贪吃蛇游戏
import pygame
import random
# 基础设置
# 屏幕高度
SCREEN_HEIGHT = 480
# 屏幕宽度
SCREEN_WIDTH = 600
# 小方格大小
GRID_SIZE = 20
# 颜色定义
WHITE = (255, 255, 255)
BLACK = (0, 0, 0)
GREEN = (0, 255, 0)
# 初始化 pygame
pygame.init()
# 创建屏幕
screen = pygame.display.set_mode((SCREEN_WIDTH, SCREEN_HEIGHT))
pygame.display.set_caption("贪吃蛇游戏")
# 游戏时钟
clock = pygame.time.Clock()
# 初始蛇的位置和长度
snake_pos = [200, 100]
snake_body = [[snake_pos[0], snake_pos[1]]]
# 食物的初始位置
food_pos = [random.randint(0, SCREEN_WIDTH // GRID_SIZE - 1) * GRID_SIZE,
random.randint(0, SCREEN_HEIGHT // GRID_SIZE - 1) * GRID_SIZE]
# 游戏结束标志
game_over = False
# 游戏方向,初始向右
direction = 'RIGHT'
change_to = direction
def game_over_screen():
font = pygame.font.SysFont(None, 48)
text = font.render("游戏结束,按任意键重新开始", True, WHITE)
screen.blit(text, [SCREEN_WIDTH // 2 - 200, SCREEN_HEIGHT // 2 - 50])
pygame.display.flip()
def update_snake():
global food_pos, game_over
if not game_over:
if direction == 'RIGHT':
snake_pos[0] += GRID_SIZE
elif direction == 'LEFT':
snake_pos[0] -= GRID_SIZE
elif direction == 'UP':
snake_pos[1] -= GRID_SIZE
elif direction == 'DOWN':
snake_pos[1] += GRID_SIZE
# 检查是否吃到食物
if [snake_pos[0], snake_pos[1]] == food_pos:
food_pos = [random.randint(0, SCREEN_WIDTH // GRID_SIZE - 1) * GRID_SIZE,
random.randint(0, SCREEN_HEIGHT // GRID_SIZE - 1) * GRID_SIZE]
else:
# 去除蛇尾
del snake_body[0]
# 检查是否撞到自己或边界
if [snake_pos[0], snake_pos[1]] in snake_body[1:]:
game_over = True
elif snake_pos[0] < 0 or snake_pos[0] >= SCREEN_WIDTH or snake_pos[1] < 0 or snake_pos[1] >= SCREEN_HEIGHT:
game_over = True
snake_body.append(list(snake_pos))
def draw_snake_and_food():
for pos in snake_body:
pygame.draw.rect(screen, GREEN, [pos[0], pos[1], GRID_SIZE, GRID_SIZE])
pygame.draw.rect(screen, WHITE, [food_pos[0], food_pos[1], GRID_SIZE, GRID_SIZE])
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
quit()
elif event.type == pygame.KEYDOWN:
if event.key == pygame.K_UP and direction!= 'DOWN':
change_to = 'UP'
elif event.key == pygame.K_DOWN and direction!= 'UP':
change_to = 'DOWN'
elif event.key == pygame.K_LEFT and direction!= 'RIGHT':
change_to = 'LEFT'
elif event.key == pygame.K_RIGHT and direction!= 'LEFT':
change_to = 'RIGHT'
if change_to == 'UP' and direction!= 'DOWN':
direction = 'UP'
elif change_to == 'DOWN' and direction!= 'UP':
direction = 'DOWN'
elif change_to == 'LEFT' and direction!= 'RIGHT':
direction = 'LEFT'
elif change_to == 'RIGHT' and direction!= 'LEFT':
direction = 'RIGHT'
update_snake()
screen.fill(BLACK)
draw_snake_and_food()
if game_over:
game_over_screen()
else:
pygame.display.flip()
clock.tick(10)
贪吃蛇游戏开发思路:
- 进行基础设置,包括屏幕大小、小方格大小、颜色等,并初始化 pygame 。
- 定义初始蛇的位置和身体、食物的位置,以及游戏结束标志和初始方向。
- update_snake 函数负责更新蛇的位置和状态,包括判断是否吃到食物、是否撞到自身或边界。
- draw_snake_and_food 函数用于在屏幕上绘制蛇和食物。
- 在主循环中,处理事件,根据玩家按键改变方向。
- 调用更新函数和绘制函数,根据游戏状态进行相应的显示。如果游戏结束,显示结束提示。
Ps:文章将不断更新
================================================
关于Python技术储备
学好 Python 不论是就业还是做副业赚钱都不错,但要学会 Python 还是要有一个学习规划。最后给那些想学习 Python 的小伙伴们一点帮助!
一、Python所有方向的学习路线
Python所有方向的技术点做的整理,形成各个领域的知识点汇总,它的用处就在于,你可以按照上面的知识点去找对应的学习资源,保证自己学得较为全面。
二、Python基础学习视频
路线对应学习视频
还有很多适合0基础入门的学习视频,有了这些视频,轻轻松松上手Python~
3、Python实战案例
光学理论是没用的,要学会跟着一起敲代码,动手实操,才能将自己的所学运用到实际当中去,这时候可以搞点实战案例来学习。
4、面试资料
我们学习Python必然是为了找到高薪的工作,下面这些面试题是来自阿里、腾讯、字节等一线互联网大厂最新的面试资料,并且有阿里大佬给出了权威的解答,刷完这一套面试资料相信大家都能找到满意的工作。