python概率计算器实例分析


Posted in Python onMarch 25, 2015

本文实例讲述了python概率计算器实现方法。分享给大家供大家参考。具体实现方法如下:

from random import randrange
#randrange form random module
def calc_prob(strengths):
  """A function that receives an array of two numbers 
  indicating the strength of each party 
  and returns the winner"""
  if strengths[1]>strengths[0]:
#Bring the bigger number to the first position in the array
    temp=strengths[0]
    strengths[0]=strengths[1]
    strengths[1]=temp   
  prob1=abs(strengths[0]-strengths[1])
#The relative strength of the 2 parties
  prob2=randrange(0,100)
#To calculate the luck that decides the outcome
  if prob2 in range(0,33-prob1):
#Check if the weaker party is capable of winning. 
#The condition gets narrower with the increase
#in relative strengths of each parties
    return strengths[1]
  elif prob2 in range(33-prob1,66-prob1):
  #The middle condition
    return "Draw"
  else:
     return strengths[0]
#Luck favors the stronger party and if relative strength
#between the teams is too large, 
#the match ends up in favor of the stronger party 
#Example
calc_prob([50,75]);#Always has to be a list to allow exchange
#Can be programmed in hundreds of better ways. Good luck!

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
python实现socket客户端和服务端简单示例
Feb 24 Python
以一个投票程序的实例来讲解Python的Django框架使用
Feb 18 Python
Python2.x利用commands模块执行Linux shell命令
Mar 11 Python
Python编程之Re模块下的函数介绍
Oct 28 Python
基于并发服务器几种实现方法(总结)
Dec 29 Python
解决PyCharm控制台输出乱码的问题
Jan 16 Python
基于pandas中expand的作用详解
Dec 17 Python
python剪切视频与合并视频的实现
Mar 03 Python
详解python中groupby函数通俗易懂
May 14 Python
Keras在训练期间可视化训练误差和测试误差实例
Jun 16 Python
python 中 .py文件 转 .pyd文件的操作
Mar 04 Python
Python字符串的转义字符
Apr 07 Python
python编写的最短路径算法
Mar 25 #Python
python实现挑选出来100以内的质数
Mar 24 #Python
Python 的 Socket 编程
Mar 24 #Python
python获取标准北京时间的方法
Mar 24 #Python
python实现定时同步本机与北京时间的方法
Mar 24 #Python
Python随机生成一个6位的验证码代码分享
Mar 24 #Python
python判断字符串是否包含子字符串的方法
Mar 24 #Python
You might like
如何对PHP程序中的常见漏洞进行攻击
2006/10/09 PHP
PHP最常用的ini函数分析 针对PHP.ini配置文件
2010/04/22 PHP
php 使用file_get_contents读取大文件的方法
2014/11/13 PHP
Symfony2开发之控制器用法实例分析
2016/02/05 PHP
浅析Yii2 GridView 日期格式化并实现日期可搜索教程
2016/04/22 PHP
thinkphp框架实现数据添加和显示功能
2016/06/29 PHP
javascript入门·图片对象(无刷新变换图片)\滚动图像
2007/10/01 Javascript
推荐自用 Javascript 缩图函数 (onDOMLoaded)……
2007/10/23 Javascript
js控制frameSet示例
2013/09/10 Javascript
查找Oracle高消耗语句的方法
2014/03/22 Javascript
使用js dom和jquery分别实现简单增删改
2014/09/11 Javascript
seajs加载jquery时提示$ is not a function该怎么解决
2015/10/23 Javascript
js生成随机数的过程解析
2015/11/24 Javascript
使用Web Uploader实现多文件上传
2016/06/08 Javascript
Node连接mysql数据库方法介绍
2017/02/07 Javascript
详解vue.js 开发环境搭建最简单攻略
2017/06/12 Javascript
原生js二级联动效果
2017/06/20 Javascript
js用类封装pop弹窗组件
2017/10/08 Javascript
JavaScript学习教程之cookie与webstorage
2019/06/23 Javascript
Vue 实现一个命令式弹窗组件功能
2019/09/25 Javascript
基于脚手架创建Vue项目实现步骤详解
2020/08/03 Javascript
vue render函数动态加载img的src路径操作
2020/10/26 Javascript
python中pycurl库的用法实例
2014/09/30 Python
Python使用django获取用户IP地址的方法
2015/05/11 Python
Python找出文件中使用率最高的汉字实例详解
2015/06/03 Python
python实现飞机大战游戏(pygame版)
2020/10/26 Python
python为QT程序添加图标的方法详解
2020/03/09 Python
Python3将ipa包中的文件按大小排序
2020/04/17 Python
Python Mock模块原理及使用方法详解
2020/07/07 Python
matplotlib图例legend语法及设置的方法
2020/07/28 Python
俄罗斯购买自行车网站:Vamvelosiped
2021/01/29 全球购物
实体的生命周期
2013/08/31 面试题
工程资料员岗位职责
2014/03/10 职场文书
安全责任书范本
2014/04/15 职场文书
企业家王石演讲稿:坚持与放下
2014/04/27 职场文书
MySQL Shell import_table数据导入的实现
2021/08/07 MySQL