Python实现四个经典小游戏合集

本文详述如何使用Python实现经典小游戏,包括俄罗斯方块、扫雷、五子棋和贪吃蛇。通过代码展示游戏实现过程,适合Python初学者和爱好者学习实践。
摘要由CSDN通过智能技术生成

这篇文章主要介绍了利用Python编写一个经典小游戏的合集,包括:贪吃蛇,扫雷,俄罗斯方块,五子棋。感兴趣的小伙伴可以跟随小编一起学习一下

目录

 一、效果展示

1、俄罗斯方块

这个应该是玩起来最最简单的了…

2、扫雷

运气好,点了四下都没踩雷哈哈…

3、五子棋

我是菜鸡,玩不赢电脑人…

4、

4、贪吃蛇

害,这个是最惊心动魄的,为了我的小心脏,不玩了不玩了…

女朋友:你就是借机在玩游戏,逮到了

啊这…

那我不吹牛逼了,我们来敲代码吧~

二、代码展示

1、俄罗斯方块

方块部分

这部分代码单独保存py文件,这里我命名为 blocks.py

方块形状的设计,一开始我是做成 4 × 4,长宽最长都是4的话旋转的时候就不考虑怎么转了,就是从一个图形替换成另一个。

要实现这个功能,只要固定左上角的坐标就可以了。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

import random

from collections import namedtuple

Point = namedtuple('Point', 'X Y')

Shape = namedtuple('Shape', 'X Y Width Height')

Block = namedtuple('Block', 'template start_pos end_pos name next')

# S形方块

S_BLOCK = [Block(['.OO',

                  'OO.',

                  '...'], Point(0, 0), Point(2, 1), 'S', 1),

           Block(['O..',

                  'OO.',

                  '.O.'], Point(0, 0), Point(1, 2), 'S', 0)]

# Z形方块

Z_BLOCK = [Block(['OO.',

                  '.OO',

                  '...'], Point(0, 0), Point(2, 1), 'Z', 1),

           Block(['.O.',

                  'OO.',

                  'O..'], Point(0, 0), Point(1, 2), 'Z', 0)]

# I型方块

I_BLOCK = [Block(['.O..',

                  '.O..',

                  '.O..',

                  '.O..'], Point(1, 0), Point(1, 3), 'I', 1),

           Block(['....',

                  '....',

                  'OOOO',

                  '....'], Point(0, 2), Point(3, 2), 'I', 0)]

# O型方块

O_BLOCK = [Block(['OO',

                  'OO'], Point(0, 0), Point(1, 1), 'O', 0)]

# J型方块

J_BLOCK = [Block(['O..',

                  'OOO',

                  '...'], Point(0, 0), Point(2, 1), 'J', 1),

           Block(['.OO',

                  '.O.',

                  '.O.'], Point(1, 0), Point(2, 2), 'J', 2),

           Block(['...',

                  'OOO',

                  '..O'], Point(0, 1), Point(2, 2), 'J', 3),

           Block(['.O.',

                  '.O.',

                  'OO.'], Point(0, 0), Point(1, 2), 'J', 0)]

# L型方块

L_BLOCK = [Block(['..O',

                  'OOO',

                  '...'], Point(0, 0), Point(2, 1), 'L', 1),

           Block(['.O.',

                  '.O.',

                  '.OO'], Point(1, 0), Point(2, 2), 'L', 2),

           Block(['...',

                  'OOO',

                  'O..'], Point(0, 1), Point(2, 2), 'L', 3),

           Block(['OO.',

                  '.O.',

                  '.O.'], Point(0, 0), Point(1, 2), 'L', 0)]

# T型方块

T_BLOCK = [Block(['.O.',

                  'OOO',

评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值