python小程序之4名牌手洗牌发牌问题解析


Posted in Python onMay 15, 2020

本文为大家解析了python实现4名牌手洗牌发牌的问题,供大家参考,具体内容如下

编写程序, 4名牌手打牌,计算机随机将52张牌(不含大小鬼)发给4名牌手,在屏幕上显示每位牌手的牌。创建函数gen_pocker()交换牌的顺序,函数getColor()获取牌的花色,函数getValue()获取牌的牌面大小,函数getPuk()获取花色和牌面大小的组合

运行效果

[51, 45, 31, 4, 48, 26, 11, 2, 24, 44, 22, 21, 16, 41, 50, 47, 13, 25, 17, 29, 42, 27, 19, 33, 5, 40, 1, 8, 30, 18, 10, 9, 0, 3, 14, 46, 36, 35, 12, 15, 20, 34, 38, 39, 43, 37, 32, 7, 28, 23, 49, 6]

牌手1:方块4 方块8 方块A 方块Q 红桃3 红桃5 红桃J 草花6 草花A 黑桃10 黑桃4 黑桃5 黑桃K

牌手2:方块6 方块J 方块K 红桃10 红桃2 红桃9 红桃A 红桃Q 草花4 黑桃2 黑桃3 黑桃6 黑桃7

牌手3:方块10 方块2 方块5 方块7 红桃6 红桃7 红桃K 草花2 草花J 草花K 草花Q 黑桃J 黑桃Q

牌手4:方块3 方块9 红桃4 红桃8 草花10 草花3 草花5 草花7 草花8 草花9 黑桃8 黑桃9 黑桃A

import random
def gen_pocker(n):
  random.shuffle(n)
  return n
#产生牌的花色
def getColor(n):
  if(n>=0 and n<=12):
    return "梅花"
  elif(n>=13 and n<=25):
    return "方块"
  elif(n>=26 and n<=38):
    return "红桃"
  elif(n>=39 and n<=51):
    return "黑桃"
def getValue(n):
  if n==0 or n==13 or n==26 or n==39:
    return 'A'
  elif n==12 or n==38 or n==25 or n==51:
    return 'K'
  elif n==11 or n==37 or n==24 or n==50:
    return 'Q'
  elif n==10 or n==36 or n==23 or n==49:
    return 'J'
  else:
    return n%13
def getPuk():
  List=[]    #代表一副牌,现在表示还没有牌,只是一个牌盒
  for i in range(0,52):
    List.append(i)  #按顺序往牌盒中放入52张牌
  List=gen_pocker(List)  #将牌盒中的牌打乱顺序
  List1=[]       #定义4个牌手
  List2=[]    
  List3=[]
  List4=[]
  for i in range(0,52): #实现发牌
    if i<13:    #打乱后的前13张牌发给牌手1,实现牌手1手牌中如何含有花色和数字
      List1.append(getColor(List[i])+str(getValue(List[i])))
    elif i<26:
      List2.append(getColor(List[i])+str(getValue(List[i])))
    elif i<39:
      List3.append(getColor(List[i])+str(getValue(List[i])))
    else:
      List4.append(getColor(List[i])+str(getValue(List[i])))
  print(List)
  print("牌手1",List1)
  print("牌手2",List2)
  print("牌手3",List3)
  print("牌手4",List4)
getPuk()

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python中使用sys模板和logging模块获取行号和函数名的方法
Apr 15 Python
Python ValueError: invalid literal for int() with base 10 实用解决方法
Jun 21 Python
使用PyInstaller将Python程序文件转换为可执行程序文件
Jul 08 Python
快速解决安装python没有scripts文件夹的问题
Apr 03 Python
Python之pandas读写文件乱码的解决方法
Apr 20 Python
Python 通配符删除文件的实例
Apr 24 Python
Python读取csv文件分隔符设置方法
Jan 14 Python
对Python生成汉字字库文字,以及转换为文字图片的实例详解
Jan 29 Python
Django项目使用CircleCI的方法示例
Jul 14 Python
django中的图片验证码功能
Sep 18 Python
Python实现串口通信(pyserial)过程解析
Sep 25 Python
windows下的pycharm安装及其设置中文菜单
Apr 23 Python
python3 使用openpyxl将mysql数据写入xlsx的操作
May 15 #Python
使用Python实现将多表分批次从数据库导出到Excel
May 15 #Python
解决python执行较大excel文件openpyxl慢问题
May 15 #Python
python可迭代对象去重实例
May 15 #Python
python 操作mysql数据中fetchone()和fetchall()方式
May 15 #Python
Python实现UDP程序通信过程图解
May 15 #Python
解决pymysql cursor.fetchall() 获取不到数据的问题
May 15 #Python
You might like
php打造属于自己的MVC框架
2012/03/07 PHP
php递归创建目录的方法
2015/02/02 PHP
分享PHP源码批量抓取远程网页图片并保存到本地的实现方法
2015/12/01 PHP
php mysql 封装类实例代码
2016/09/18 PHP
PHP 闭包详解及实例代码
2016/09/28 PHP
用roll.js实现的图片自动滚动+鼠标触动的特效
2007/03/18 Javascript
javascript事件模型代码
2007/07/01 Javascript
Jquery获取元素的父容器对象示例代码
2014/02/10 Javascript
微信中一些常用的js方法汇总
2015/03/12 Javascript
JavaScript中解析JSON数据的三种方法
2015/07/03 Javascript
基于JavaScript怎么实现让歌词滚动播放
2015/11/03 Javascript
js图片轮播手动切换效果
2015/11/10 Javascript
jQuery通过ajax请求php遍历json数组到table中的代码(推荐)
2016/06/12 Javascript
js实现HashTable(哈希表)的实例分析
2016/11/21 Javascript
让微信小程序支持ES6中Promise特性的方法详解
2017/06/13 Javascript
使用p5.js临摹动态图片
2019/11/04 Javascript
使用JavaScript通过前端发送电子邮件
2020/05/22 Javascript
Python+Opencv识别两张相似图片
2020/03/23 Python
详解Python中的array数组模块相关使用
2016/07/05 Python
python3实现二叉树的遍历与递归算法解析(小结)
2019/07/03 Python
python实现windows倒计时锁屏功能
2019/07/30 Python
Python Json数据文件操作原理解析
2020/05/09 Python
基于plt.title无法显示中文的快速解决
2020/05/16 Python
Html5自定义字体解决方法
2019/10/09 HTML / CSS
美国高端寝具品牌:Coyuchi
2017/02/08 全球购物
世界上最大的家庭自动化公司:Smarthome
2017/12/20 全球购物
SNIDEL官网:日本VIVI杂志人气少女第一品牌
2020/03/12 全球购物
策划主管的工作职责
2013/11/24 职场文书
物业招聘计划书
2014/01/10 职场文书
出国留学介绍信
2014/01/13 职场文书
个人自查自纠材料
2014/10/14 职场文书
2014年底工作总结
2014/12/15 职场文书
仓库管理员岗位职责
2015/02/03 职场文书
音乐研修感悟
2015/11/18 职场文书
python cv2图像质量压缩的算法示例
2021/06/04 Python
Javascript之datagrid查询详解
2021/09/15 Javascript