python3 时间模块 random模块之两个小练习

话不多说,一个是算时间的,还有一个是生成验证码的

 1 #!usr/bin/env/ python
 2 # -*- coding:utf-8 -*-
 3 # Author: XiaoFeng
 4 import time
 5 start_time = "2016-9-1 7:00:00"
 6 handel = time.mktime(time.strptime(start_time, "%Y-%m-%d %H:%M:%S"))
 7 now = time.time()
 8 now_strtime = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(now))
 9 print(now_strtime)
10 dis_time = now - handel
11 struc_time = time.localtime(dis_time)
12 print("我已经来这儿\033[41;1m%d年,%d月,%d日,%d小时,%d分钟,%d秒了!\033[0m,好快呀" %
13       (struc_time.tm_year-1970, struc_time.tm_mon-1, struc_time.tm_mday-1,
14        struc_time.tm_hour, struc_time.tm_min, struc_time.tm_sec))

验证码:

#!usr/bin/env/ python
# -*- coding:utf-8 -*-
# Author: XiaoFeng
import random

def verif_code():
    code = []
    i = 4
    while 1:
        times_1 = random.sample(["num", "alpha"], 1)
        print(times_1)
        if times_1[0] == "num":
            num = str(random.randint(0, 9))
            code.append(num)
        else:
            alpha = chr(random.randint(65, 90))
            if random.randint(0, 1) == 0:
                alpha = alpha.lower()
            code.append(alpha)
        i -= 1
        if i == 0:
            return code

verification = verif_code()
print(verification)
verification = "".join(verification)
print(verification)
#!usr/bin/env/ python# -*- coding:utf-8 -*-# Author: XiaoFengimport random

def verif_code():    code = []    i = 4while 1:        times_1 = random.sample(["num", "alpha"], 1)        print(times_1)        if times_1[0] == "num":            num = str(random.randint(0, 9))            code.append(num)        else:            alpha = chr(random.randint(65, 90))            if random.randint(0, 1) == 0:                alpha = alpha.lower()            code.append(alpha)        i -= 1if i == 0:            return code

verification = verif_code()print(verification)verification = "".join(verification)print(verification)

原文地址:https://www.cnblogs.com/xf1262048067/p/10810515.html

时间: 2024-10-11 10:20:15

python3 时间模块 random模块之两个小练习的相关文章

Python进阶(十)----规范化格式目录, time模块, datatime模块,random模块,collection模块(python额外数据类型)

Python进阶(十)----规范化格式目录, time模块, datatime模块,random模块,collection模块(python额外数据类型) 一丶规范化格式目录 六个目录: #### 对某某项目进行一个标准化的开发,进行规范化. #bin : 启动项目程序的主入口 #conf : 项目的配置文件 #core : 主要逻辑(业务逻辑) #db : 存放数据() #lib : 辅助文件(存放公共的一些方法) #README : 项目文档说明 ? 二丶time模块(时间模块) 时间的三

Python 常用模块(1) -- collections模块,time模块,random模块,os模块,sys模块

主要内容: 一. 模块的简单认识 二. collections模块 三. time时间模块 四. random模块 五. os模块 六. sys模块 一. 模块的简单认识 模块: 模块就是把装有特定功能的代码进行归类的结果引入模块的方式: (1) import 模块 (2) from 位置 import 模块 二. collections模块 collections模块主要封装了一些关于集合类的相关操作. 如我们学过的iterable,iterator等等.除此以外, collections还提

re模块 ,random模块

# 在python中使用正则表达式 # 转义符 : 在正则中的转义符 \ 在python中的转义符# 正则表达式中的转义 :# '\(' 表示匹配小括号# [()+*?/$.] 在字符组中一些特殊的字符会现出原形# 所有的 \w \d \s(\n,\t, ) \W \D \S都表示它原本的意义# [-]只有写在字符组的首位的时候表示普通的减号# 写在其他位置的时候表示范围[1-9]# 如果就是想匹配减号 [1\-9] # python中的转义符# 分析过程'\n' # \转义符 赋予这个n一个特

python shutil模块&random模块

shutil模块 import shutil shutil.copyfileobj(open("os_.py", "r"), open("os_2.py", "w")) # 将文件内容拷贝到另一个文件中,目标文件无需存在 shutil.copyfile("os_.py", "os_1.py") # 拷贝文件,目标文件无需存在 shutil.copymode("os_.py&qu

python - 常用模块 - random模块

python中的random模块主要是用来生成随机数 1 #!/usr/bin/env python 2 #coding:utf-8 3 4 import random 11 #1.random.random() 返回一个产生介于0-1之间的随机数 12 a = random.random() 13 print('a:',a) # a: 0.6166193118806547 14 15 #2.random.uniform(start,end) 返回一个介于[start,end]([]这里是数学的

Python--正则表达式,re模块,collections模块,random模块,时间模块

正则表达式 元字符量词(?) 元字符 : . \w \d \s \W \D \S \n \t \b () | [] [^] ^ $ 量词 : * + ? {n} ,{n,} ,{n,m} re模块怎么调用re模块 查找 : findall search match finditer 分割和替换 :split sub subn 编译 :compile 节省时间re模块到底用在了几个地方? 量词 :表示匹配0次或1次 在量词之后 :是惰性匹配的标志 分组命名 :(?P<NAME>正则表达式) 引用

logging模块,collections模块,random模块

logging日志模块 低配版 import logging logging.basicConfig(lexel=logging.INFO, format='%(asctime)s%(filename)s[line:%(lineno)d]%(levelname)s%(message)s filename='low版logging.log' ) logging.debug('debug message') logging.info('info message') logging.warning('

Day5模块-random模块

random:随机数 >>> import random>>> print(random.random()) #生成随机小数0.6906362176182085 >>> print(random.randint(1,5)) #生成1-5的随机数,包括51 >>> print(random.sample(range(100),5))  #从0-100随机生成5个[42, 0, 15, 83, 20] 两个实例:随机验证码 1 >&

python模块——random模块(简单验证码实现)

实现一个简单的验证码生成器 #!/usr/bin/env python # -*- coding:utf-8 -*- __author__ = "loki" # Usage: 验证码生成 import random def verification_code(digit): verify_code = "" for count in range(0, digit): int_num = random.randint(0, 9) lower_case = chr(ra