Python 3 Numbers choice() 方法

返回 Python 3 Numbers


描述

choice() 方法返回一个列表,元组或字符串的随机项。


语法

以下是 choice() 方法的语法:

import random

random.choice( seq )

注意:choice()是不能直接访问的,需要导入 random 模块,然后通过 random 静态对象调用该方法。

参数

  • 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

返回 Python 3 Numbers

查看笔记

扫码一下
查看教程更方便