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

python_day6_其他模块

时间:2017-06-06 10:40:43      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:type   res   turn   imp   函数   随机   ret   比较   --   

#############random

随机产生

验证码

import random
def yanzhengma(n=5):
res=‘‘
for i in range(n):
num=random.randint(0,9)
zimu=chr(random.randint(65,90))
JG=random.choice([num,zimu])
res+=str(JG)
return res
print (yanzhengma(4))

 

#################eval()函数

eval()函数的作用:-->比较智能的 脱掉字符串的括号,让列表、字符串、元组等互相转

例子:
A=‘1+2‘
print (A,type(A))

B=eval(A)
print (B,type(B))


A结果是 字符串 1+2
B结果是3 int类型

 

 

####################os模块

带补充

###################sys模块

待补充

 

python_day6_其他模块

标签:type   res   turn   imp   函数   随机   ret   比较   --   

原文地址:http://www.cnblogs.com/onda/p/6949522.html

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