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

python基础: String类型

时间:2017-09-02 10:37:21      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:string   ice   choice   rand   logs   range   blog   class   and   

1、模块

  ascii_letters和digits

  

import string,random

def get_str(num,length=4):
    for i in range(num):
        str = [random.choice(string.ascii_letters + string.digits) for _ in range(length)]
        st = "".join(str)
        yield st

lis = get_str(10)
for i in lis:
    print i

 

python基础: String类型

标签:string   ice   choice   rand   logs   range   blog   class   and   

原文地址:http://www.cnblogs.com/waylon/p/7465864.html

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