password=input("请输入你的密码:")
p=list(password)
x=0for i in p:if i ==" ":x=1if x==1:print("密码格式不对")#密码中不能包含空格elif password.isdigit()==Trueor password.isalpha()==True:#全为数字或字母print("安全强度:弱")elif password.isalnum()==True:#只有数字和字母print("安全强度:中")else:print("安全强度:强")#密码包含数字、字母、特殊符号时安全强度为强
import string
defcheck(pwd):#密码必须至少包含6个字符ifnotisinstance(pwd,str)orlen(pwd)<6:return'not suitable for password'#密码强度等级与包含字符种类的对应关系d ={1:'weak',2:'below middle',3:'above middle',4:'strong'}#分别用来标记pwd是否含有数字、小写字母、大写字母和指定的标点符号r =[False]*4for ch in pwd:#是否包含数字ifnot r[0]and ch in string.digits:r[0]=True#是否包含小写字母elifnot r[1]and ch in string.ascii_lowercase:r[1]=True#是否包含大写字母elifnot r[2]and ch in string.ascii_uppercase:r[2]=True#是否包含指定的标点符号elifnot r[3]and ch in',.!;?<>':r[3]=True#统计包含的字符种类,返回密码强度return d.get(r.count(True),'error')print(check('a2Cdwert,'))
observable可观察的类addObserver()方法 (Observable Class addObserver() method) addObserver() method is available in java.util package. addObserver()方法在java.util包中可用。 addObserver() method is used to insert the given observer (obs) to the bundles of o…
AAC ADTS格式分析: 没有详细的参数说明,只有格式分析。可以查询文档查看详细参数说明。
ADTS的全称是Audio Data Transport Stream。是AAC音频的传输流格 式。AAC音频格式在MPEG-2(ISO-13318-7 2003)中有定义。AAC后来 又被采用到…
rotateright长类rotateRight()方法 (Long class rotateRight() method) rotateRight() method is available in java.lang package. rotationRight()方法在java.lang包中可用。 rotateRight() method is used to returns the value generated by rotating the binary 2’s comp…
目录:介绍:代码:分析:汇编:介绍:
一个有 n 个结点的连通图的生成树是原图的极小连通子图,且包含原图中的所有 n 个结点, 并且有保持图连通的最少的边。 最小生成树可以用kruskal&am…
IdentityHashMap类keySet()方法 (IdentityHashMap Class keySet() method) keySet() method is available in java.util package. keySet()方法在java.util包中可用。 keySet() method is used to get a set of all the existing keys in this IdenityHashMap to be viewed in …
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;namespace beyond_联动_
{public partial clas…
IdentityHashMap类putAll()方法 (IdentityHashMap Class putAll() method) putAll() method is available in java.util package. putAll()方法在java.util包中可用。 putAll() method is used to copy all of the entry (key-value pairs) that exists from the given map (m)…