码迷,mamicode.com
首页 > 其他好文 > 详细

斗地主发牌器

时间:2019-03-30 13:31:26      阅读:618      评论:0      收藏:0      [点我收藏+]

标签:ase   print   end   imp   random   app   person   pre   shuffle   

import random

#定义54张牌
huase = [‘\u2665‘,‘\u2660‘,‘\u2666‘,‘\u2663‘]
num = [‘A‘,‘2‘,‘3‘,‘4‘,‘5‘,‘6‘,‘7‘,‘8‘,‘9‘,‘10‘,‘J‘,‘Q‘,‘K‘]
kings = [‘大王‘,‘小王‘]

#一副牌
for i in huase:
for el in num:
kings.append(i+el)

#乱序
random.shuffle(kings)

#发牌
person1 = kings[0:17]
person2 = kings[17:34]
person3 = kings[34:51]
dipai = kings[51:]
print(person1)
print(person2)
print(person3)
print(dipai)

斗地主发牌器

标签:ase   print   end   imp   random   app   person   pre   shuffle   

原文地址:https://www.cnblogs.com/zjx1/p/10626415.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!