赞
踩
有趣的python小程序
1.密码生成器x=int(input())
print(''.join(__import__('random').choice('QWERTYUIOPASDFGHJKLZXCVBNMqwertyuiopasdfghjklzxcvbnm!@#$%^&*()_+=}{[]:;<,.>?/1234567890') for i in range(x)))
运行结果:16
IMHxl0+I_u8%)NnF
2.时光机import time
import datetime
import sys
print('输入指定日期即可穿越(只能到未来)'" "'请输入目标年月日:')
y=int(input('年'))
m=int(input('月'))
d=int(input('日'))
sj=str(y)+' '+str(m)+' '+str(d)
d1=datetime.datetime(y,m,d)
print('启动中,还需要')
while True:
d2=datetime.datetime.now()
sec=round((d1-d2).total_seconds())
op=[int(sec/86400),'天',int((sec-int(sec/86400)*86400)/3600),'小时',int((sec-int(sec/3600)*3600)/60),'分',int((sec-int(sec/60)*60)),
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。