首页 > 代码库 > Python常用函数

Python常用函数

1.Python choice() 函数

import randomprint "choice([1, 2, 3, 5, 9]) : ", random.choice([1, 2, 3, 5, 9])print "choice(‘A String‘) : ", random.choice(A String)

输出结果

choice([1, 2, 3, 5, 9]) :  2choice(A String) :  n

 

Python常用函数