Python 3 - 数字 choice() 方法

  • 描述

    choice()方法从列表、元组或字符串中随机返回一个项目。
  • 句法

    以下是语法choice()方法 -
    
    choice( seq )
    
    注意− 该函数不可直接访问,因此我们需要导入随机模块,然后我们需要使用随机静态对象调用该函数。
  • 参数

    seq− 这可以是列表、元组或字符串。
  • 返回值

    此方法返回一个随机项目。
  • 例子

    以下示例显示了 choice() 方法的用法。
    
    #!/usr/bin/python3
    import random
    print ("returns a random number from range(100) : ",random.choice(range(100)))
    print ("returns random element from list [1, 2, 3, 5, 9]) : ", random.choice([1, 2, 3, 5, 9]))
    print ("returns random character from string 'Hello World' : ", random.choice('Hello World'))
    
  • 输出

    当我们运行上面的程序时,它会产生类似于以下的结果 -
    
    returns a random number from range(100) :  19
    returns random element from list [1, 2, 3, 5, 9]) :  9
    returns random character from string 'Hello World' :  r