python翻转_Python程序设计硬币翻转功能

python翻转

Here, we are going to build a coin() function using python. The program is so simple as an introductory program for defining a function. The function is going to use an inbuilt library naming random. This random library helps us to choose a random value of the variable within the range.

在这里,我们将使用python构建coin()函数 。 该程序非常简单,就像定义功能的入门程序一样。 该函数将使用命名为random的内置库。 这个随机库可帮助我们选择该范围内变量的随机值。

    random.choice(['H','T'])

The above function will choose a random value with a probability of 0.5 each i.e. all are independent to each other which will work as dice.

上面的函数将选择一个随机值,每个概率为0.5,即所有值彼此独立,将它们作为骰子工作。

Here is the code

这是代码

import random

# function to return the random value of 
# coin flip
def coin():
    return random.choice(['H','T'])

# main code i.e. calling the function
print('COIN FLIP: ', coin())
print('COIN FLIP: ', coin())
print('COIN FLIP: ', coin())
print('COIN FLIP: ', coin())
print('COIN FLIP: ', coin())

Output

输出量

COIN FLIP:  H
COIN FLIP:  T
COIN FLIP:  T
COIN FLIP:  H
COIN FLIP:  T


翻译自: https://www.includehelp.com/python/program-to-design-a-coin-flip-function.aspx

python翻转

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值