python编写扎金花小程序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python编写扎金花小程序相关的知识,希望对你有一定的参考价值。

参考技术A

一付扑克牌,去掉大小王,每个玩家发3张牌,最后比大小,看谁赢。

有以下几种牌:

豹子:三张一样的牌,如3张6.

顺金:又称同花顺,即3张同样花色的顺子, 如红桃 5、6、7

顺子:又称拖拉机,花色不同,但是顺子,如红桃5、方片6、黑桃7,组成的顺子

对子:2张牌一样

单张:单张最大的是A

这几种牌的大小顺序为, 豹子>顺金>顺子>对子>单张

运行效果如下:

如果对你有帮助,记得点赞加关注,谢谢!!!

面向对象实现扎金花

见代码

 1 import random
 2 
 3 
 4 class Card:
 5     def __init__(self, color, style, value):
 6         self.color = color
 7         self.style = style
 8         self.value = value
 9 
10 
11 class Cards:
12 
13     def __init__(self):
14         self.card_list = []
15         self.card_style = [2, 3, 4, 5, 6, 7, 8, 9, 10, J, Q, K, A]
16         self.card_3 = []
17 
18     def group(self):
19         for i in "????":
20             for index, j in enumerate(self.card_style):
21                 self.card_list.append(Card(i, j, index))
22 
23     def send(self):
24         for t in range(3):
25             index_3 = (random.randint(0, len(self.card_list))-1)
26             self.card_3.append(self.card_list[index_3])
27             del self.card_list[index_3]
28         self.card_3.sort(key=lambda v: v.value)
29         for u in self.card_3:
30             print(u.color+u.style, end= )
31 
32         if self.card_3[0].value == self.card_3[1].value and self.card_3[1].value == self.card_3[2].value:
33             print("-三条")
34         elif self.card_3[0].value == self.card_3[1].value or self.card_3[1].value == self.card_3[2].value or self.card_3[0].value == self.card_3[2].value:
35             print("-二条")
36         elif self.card_3[0].value+1 == self.card_3[1].value == self.card_3[2].value-1 and self.card_3[0].color == self.card_3[1].color == self.card_3[2].color:
37             print("-同花顺")
38         elif self.card_3[0].color == self.card_3[1].color == self.card_3[2].color:
39             print("-同花")
40         elif self.card_3[0].value+1 == self.card_3[1].value == self.card_3[2].value-1:
41             print("-顺子")
42         else:
43             print("-杂牌")
44 
45 
46 c = Cards()
47 c.group()
48 c.send()

 

以上是关于python编写扎金花小程序的主要内容,如果未能解决你的问题,请参考以下文章

斗地主——扎金花——3DMark

html5炸金花棋牌开发比较算法在php中的实现

面向对象实现扎金花

搜狐笔试题之扎金花

python编写微信小程序命令行操作脚本

Python程序编写购物小程序