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

Python20 - Day06

时间:2018-01-15 16:30:28      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:div   str   ice   choice   python   turn   随机   print   post   

常用模块

一、random模块

import random

# print(random.random())  #打印0-1之间的小数
# print(random.randint(1,3))  #大于等于1小于等于3之间的整数
# print(random.randrange(1,5))  #大于等于1小于5之间的整数
# print(random.choice([1,‘23‘,[4,5]]))   #1或者23,或者[4,5]    random.choice([list])
# print(random.sample([1,‘23‘,[4,5]],2))  #random.sample([1,2,3,4,5],2)(k=[1,2,3,4,5],n=2) k列表中的任意n个组合

生成随机码

import random
def make_code(n):
    res=‘‘
    for i in range(n):
        s1=chr(random.randint(65,90))
        s2=str(random.randint(0,9))
        res+=random.choice([s1,s2])
    return res

print(make_code(9))

 

 

二、os模块

 

Python20 - Day06

标签:div   str   ice   choice   python   turn   随机   print   post   

原文地址:https://www.cnblogs.com/mrwang1101/p/8288286.html

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