码迷,mamicode.com
首页 > 编程语言 > 详细

Python常用函数

时间:2017-06-18 19:58:02      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:常用函数   ring   import   pre   输出   div   class   random   choice   

1.Python choice() 函数

import random

print "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]) :  2
choice(A String) :  n

 

Python常用函数

标签:常用函数   ring   import   pre   输出   div   class   random   choice   

原文地址:http://www.cnblogs.com/cnki/p/7045023.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!