python isupper需要调包吗_密码强度等级

1

# 思路:将统计情况放主函数中一起写,避免分开写时多次遍历密码字符串。

while True:

try:

password = input().strip()

score = 0  # 初始化得分为0

# 长度得分

if len(password) <= 4:

score += 5

elif 5 <= len(password) <= 7:

score += 10

else:

score += 25

# 字母、数字、符号统计(是否出现过、出现的个数)

alpha, Alpha, digit, digit_num, symbol, symbol_num = 0, 0, 0, 0, 0, 0

for ch in password:

if ch.islower():

alpha = 1

elif ch.isupper():

Alpha = 1

elif ch.isdigit():

digit = 1

digit_num += 1

else:

symbol = 1

symbol_num += 1

# 字母得分

if (alpha and not Alpha) or (Alpha and not alpha):

score += 10

elif alpha and Alpha:

score += 20

# 数字得分

if digit_num == 1:

score += 10

elif digit_num > 1:

score += 20

# 符号得分

if symbol_num == 1:

score += 10

elif symbol_num > 1:

score += 25

# 奖励得分

# 此写法错误,本该属于第三种加分的情况被第二种加分情况拦截住了,加成了第二种情况的分数。

# if (alpha or Alpha) and digit and not symbol:

#     score += 2

# elif (alpha or Alpha) and digit and symbol:

#     score += 3

# elif alpha and Alpha and digit and symbol:

#     score += 5

if alpha and Alpha and digit and symbol:

score += 5

elif (alpha or Alpha) and digit and symbol:

score += 3

elif (alpha or Alpha) and digit:

score += 2

# 分数等级

if score >= 90:

print('VERY_SECURE')

elif score >= 80:

print('SECURE')

elif score >= 70:

print('VERY_STRONG')

elif score >= 60:

print('STRONG')

elif score >= 50:

print('AVERAGE')

elif score >= 25:

print('WEAK')

else:

print('VERY_WEAK')

except:

break

编辑于 2020-12-28 18:12:18

回复(0)

0

import re

import sys

import traceback

others = r"[!\"#\$%&\'\(\)\*\+,-\./:;<=>\?@\[\\\]\^_`\{\|\}~]"

def cal_len(p):

l = len(p)

return 5 if l<5 else 10 if l<8 else 25

def cal_c(p):

lowers = re.findall(r"[a-z]", p)

uppers = re.findall(r"[A-Z]", p)

return 0 if not lowers and not uppers else 20 if lowers and uppers else 10

def cal_n(p):

nums = re.findall(r"[0-9]", p)

return 0 if not nums else 10 if len(nums)==1 else 20

def cal_o(p):

l = re.findall(others, p)

return 0 if not l else 10 if len(l)==1 else 25

def award(p):

if cal_n(p):

if cal_c(p):

if cal_o(p):

if cal_c(p) == 20:

return 5

return 3

return 2

return 0

def cal(p):

return cal_len(p) + cal_c(p) + cal_n(p) + cal_o(p) + award(p)

def judge(p):

score = cal(p)

return ("VERY_SECURE" if score >= 90

else "SECURE" if score >= 80

else "VERY_STRONG" if score >= 70

else "STRONG" if score >= 60

else "AVERAGE" if score >= 50

else "WEAK" if score >= 25

else "VERY_WEAK"

)

try:

for p in sys.stdin:

print(judge(p.strip()))

except Exception as e:

print(traceback.format_exc())

发表于 2020-12-13 01:38:02

回复(0)

0

while True:

try:

s = input()

password = []

password.extend(s)

p1,p2,p3,p4 = [],[],[],[]

for i in password:

if i.isupper():

p1.append(i)

elif i.islower():

p2.append(i)

elif i.isdigit():

p3.append(i)

else:

p4.append(i)

score = []

if len(s) <= 4:

score.append(5)

elif 5 <= len(s) <= 7:

score.append(10)

else:

score.append(25)

if p1&nbs***bsp;p2:

if len(p1) == 0&nbs***bsp;len(p2) == 0:

score.append(10)

else:

score.append(20)

if len(p3) == 1:

score.append(10)

elif len(p3) > 1:

score.append(20)

if len(p4) == 1:

score.append(10)

elif len(p4) > 1:

score.append(25)

if p1 and p2 and p3 and p4:

score.append(5)

elif (p1&nbs***bsp;p2) and p3 and p4:

score.append(3)

elif (p1&nbs***bsp;p2) and  p3:

score.append(2)

result = sum(score)

if result >= 90:

print('VERY_SECURE')

elif result >= 80:

print('SECURE')

elif result >= 70:

print('VERY_STRONG')

elif result >= 60:

print('STRONG')

elif result >= 50:

print('AVERAGE')

elif result >= 25:

print('WEAK')

elif result >= 0:

print('VERY_WEAK')

except:break

编辑于 2020-12-01 14:49:45

回复(0)

0

def changdu(p):

if len(p) <= 4:

return 5

elif 5 <= len(p) <= 7:

return 10

elif len(p) >= 8:

return 25

def zimu(p):

n = 0

for i in p:

if i.isalpha():

n+=1

if n == 0:

return 0

elif p.upper() == p&nbs***bsp;p.lower() == p:

return 10

else:

return 20

def shuzi(p):

n = 0

for i in p:

if i.isdigit():

n+=1

if n==0:

return 0

elif n==1:

return 10

else:

return 20

def fuhao(p):

n =0

for i in p:

if not i.isdigit() and not i.isalpha():

n+=1

if n == 0:

return 0

elif n== 1:

return 10

else:

return 25

def jaingli(p):

a = 0#字母

b = 0#数字

c = 0#符号

for i in p:

if p.isalpha():

a+=1

elif p.isdigit():

b+=1

else:

c+=1

if a!=0 and b!=0 and c==0:

return 2

elif a!=0 and b!=0 and c!=0:

return 3

else:

return 5

while True:

try:

p = input()

s_changdu = changdu(p)

s_zimu = zimu(p)

s_shuzi = shuzi(p)

s_fuhao = fuhao(p)

s_jiangli = jaingli(p)

s_sum = s_changdu + s_zimu + s_shuzi + s_fuhao +s_jiangli

if s_sum>=90:

print("VERY_SECURE")

elif s_sum>=80:

print("SECURE")

elif s_sum>=70:

print("VERY_STRONG")

elif s_sum>=60:

print("STRONG")

elif s_sum>=50:

print("AVERAGE")

elif s_sum>=25:

print("WEAK")

else:

print("VERY_WEAK")

except:

break

编辑于 2020-11-20 12:13:19

回复(0)

0

# 2020年11月14日23:28:18

def get_scord(password):

scord = 0

#   验证密码长度

length = len(password)

#   长度得分

if length <= 4:

scord += 5

elif length <= 7:

scord += 10

else:

scord += 25

#   验证密码字母、数字、符号个数

lower = 0

captial = 0

number = 0

symbol = 0

for i in range(length):

if "a"<=password[i]<="z":

lower += 1

elif "A"<=password[i]<="Z":

captial += 1

elif "0"<=password[i]<="9":

number += 1

else:

symbol += 1

#   字母得分

if lower>0 and captial>0:

scord += 20

elif lower == 0 and captial == 0:

scord += 0

else:

scord += 10

#   数字得分

if number == 0:

scord += 0

elif number == 1:

scord += 10

else:

scord += 20

#   符号得分

if symbol == 0:

scord += 0

elif symbol == 1:

scord += 10

else:

scord += 25

#   奖励得分

if lower>0 and captial>0 and number>0 and symbol>0:

scord += 5

elif (lower>0&nbs***bsp;captial>0) and number>0 and symbol>0:

scord += 3

elif (lower>0&nbs***bsp;captial>0) and number>0 and symbol==0:

scord += 2

return scord

while True:

try:

password = input()

#       获取分数

scord = get_scord(password)

#       根据分数判断密码等级

if scord>=90:

print("VERY_SECURE")

elif scord>=80:

print("SECURE")

elif scord>=70:

print("VERY_STRONG")

elif scord>=60:

print("STRONG")

elif scord>=50:

print("AVERAGE")

elif scord>=25:

print("WEAK")

elif scord>=0:

print("VERY_WEAK")

except:

break

发表于 2020-11-15 00:24:11

回复(0)

0

条理清晰,简单易懂

while True:

try:

s = input().strip()

p_len, low, upper, digit, ch = 0, 0, 0, 0, 0

flag = 0 # 四位二进制标记是否存在 0000 分别代表 字符 数字 大写 小写

for i in s:

p_len += 1

if i.islower():

low += 1

flag |= 0b0001

elif i.isupper():

upper += 1

flag |= 0b0010

elif i.isdigit():

digit += 1

flag |= 0b0100

else:

ch += 1

flag |= 0b1000

score1 = 5 if p_len <= 4 else 10 if 5 <= p_len <= 7 else 25

score2 = 0 if flag & 0b0011 == 0 else 20 if flag & 0b0011 == 3 else 10

score3 = 0 if digit == 0 else 10 if digit == 1 else 20

score4 = 0 if ch == 0 else 10 if ch == 1 else 25

score5 = 2 if 5 <= flag <= 7 else 3 if 13 <= flag <= 14 else 5 if flag == 15 else 0

score = score1 + score2 + score3 + score4 +score5

res = ('VERY_SECURE' if score >= 90 else 'SECURE' if score >= 80 else

'VERY_STRONG' if score >= 70 else 'STRONG' if score >= 60 else

'AVERAGE' if score >= 50 else 'WEAK' if score >= 25 else 'VERY_WEAK')

print(res)

except:

break

编辑于 2020-10-03 10:23:11

回复(0)

0

while True:

try:

str = input()

part1 = 0

part2 = 0

part3 = 0

part4 = 0

part5 = 0

length = len(str)

if length <= 4:

part1 = 5

elif length>=5 and length<=7 :

part1 = 10

else:

part1 = 25

numCount = 0

signCount = 0

lowerCount = 0

upperCount = 0

alphaCount = 0

for s in str:

if s.isdigit():

numCount = numCount+1

if not s.isdigit() and not s.isalnum():

signCount = signCount+1

if s.islower():

lowerCount = lowerCount+1

if s.isupper():

upperCount = upperCount+1

if s.isalpha():

alphaCount = alphaCount+1

if lowerCount == 0 and upperCount > 0:

part2 = 10

elif lowerCount > 0 and upperCount == 0:

part2 = 10

elif lowerCount > 0 and upperCount > 0:

part2 = 20

if numCount == 1:

part3 = 10

elif numCount > 1:

part3 = 20

if signCount == 1:

part4 = 10

elif signCount > 1:

part4 = 25

if part2 == 10 and part3 > 0 and part4 == 0:

part5 = 2

elif part2 == 10 and part3 > 0 and part4 > 0:

part5 = 3

elif part2 == 20 and part3 > 0 and part4 > 0:

part5 = 5

sum = part1+part2+part3+part4+part5

if sum >= 90:

print("VERY_SECURE")

elif sum >=80 and sum <90:

print("SECURE")

elif sum >=70 and sum <80:

print("VERY_STRONG")

elif sum >=60 and sum <70:

print("STRONG")

elif sum >=50 and sum <60:

print("AVERAGE")

elif sum >=25 and sum < 50:

print("WEAK")

else:

print("VERY_WEAK")

except:

break

发表于 2020-09-29 19:26:39

回复(0)

0

参考通过小伙伴的代码

while True:

try:

s = input()

l = len(s)

p = 0

d = 0

lower = 0

upper = 0

f = 0

t = ['0', '0', '0', '0']

# 密码长度判断

if l 

p += 5

elif l 

p += 10

else:

p += 25

for i in range(0, l):

if s[i].isdigit(): # 数字判断

t[0] = '1'

if d 

d += 10

elif s[i].isupper(): # 大小判断

t[1] = '1'

if lower 

lower += 10

elif s[i].islower(): # 小写判断

t[2] = '1'

if upper 

upper += 10

else: # 符号判断

t[3] = '1'

if f == 10: # 2个即得满25分,2个以上不执行下述判断

f = 25

elif f == 0: # 一个符号

f = 10

p += d + lower + upper + f

t_s = ''.join(t)

# 建立奖励的判别标准,采用0, 1来判断十分方便

if t_s == '1111':

p += 5

elif t_s == '1011'&nbs***bsp;t_s == '1101':

p += 3

elif t_s[1:2] != '00':

p += 2

if p >= 90:

print('VERY_SECURE')

elif p >= 80:

print('SECURE')

elif p >= 70:

print('VERY_STRONG')

elif p >= 60:

print('STRONG')

elif p >= 50:

print('AVERAGE')

elif p >= 25:

print('WEAK')

else:

print('VERY_WEAK')

except:

break

发表于 2020-08-24 15:06:16

回复(0)

0

import re

def secure_level():

str1 = input()

score = 0

# length

n = len(str1)

if n <= 4:

score += 5

elif n >= 5 and n <= 7:

score += 10

else:

score += 25

# three elements

char_lower = 0

char_upper = 0

nums = 0

signs = 0

# char

temp = re.findall('[a-z]', str1)

char_lower = len(temp)

if char_lower: score += 10

temp = re.findall('[A-Z]', str1)

char_upper = len(temp)

if char_upper: score += 10

# number

temp = re.findall('[0-9]', str1)

nums = len(temp)

if nums == 1:

score += 10

elif nums >= 2:

score += 20

# sign

signs = n - char_lower - char_upper - nums

if signs == 1:

score += 10

elif signs >= 2:

score += 25

# reward

if char_lower and char_upper and nums and signs:

score += 5

elif (char_lower&nbs***bsp;char_upper) and nums and signs:

score += 3

elif (char_lower&nbs***bsp;char_upper) and nums:

score += 2

if score >= 90: return 'VERY_SECURE'

elif score >= 80: return 'SECURE'

elif score >= 70: return 'VERY_STRONG'

elif score >= 60: return 'STRONG'

elif score >= 50: return 'AVERAGE'

elif score >= 25: return 'WEAK'

elif score >= 0: return 'VERY_WEAK'

print(secure_level()) 有一个用例一直没法通过 → PKyt&&fmE^`aBC)t$`Jh^^Rxr(EQ&!N(u)^)`

里面明明没有数字为什么输出最后得分会达到90分呢?

发表于 2020-08-01 13:05:49

回复(0)

0

while True:

try:

key = input()

password = []

p1, p2, p3, p4 = [], [], [], []

length_of_key = len(key)

for i in range(0, length_of_key):

if key[i].isupper():

p1.append(key[i])

elif key[i].islower():

p2.append(key[i])

elif key[i].isdigit():

p3.append(key[i])

else:

p4.append(key[i])

score = 0

if len(key) <= 4:

score += 5

elif 7 >= len(key) >= 5:

score += 10

else:

score += 25

if p1&nbs***bsp;p2:

if len(p1) == 0&nbs***bsp;len(p2) == 0:

score += 10

else:

score += 20

if len(p3) == 1:

score += 10

elif len(p3) > 1:

score += 20

if len(p4) == 1:

score += 10

elif len(p4) > 1:

score += 25

if (p1&nbs***bsp;p2) and p3:

score += 2

elif (p1&nbs***bsp;p2) and p3 and p4:

score += 3

elif p1 and p2 and p3 and p4:

score += 5

if score >= 90:

print('VERY_SECURE')

elif score >= 80:

print('SECURE')

elif score >= 70:

print('VERY_STRONG')

elif score >= 60:

print('STRONG')

elif score >= 50:

print('AVERAGE')

elif score >= 25:

print('WEAK')

elif score >= 0:

print('VERY_WEAK')

except:

break

编辑于 2020-07-29 23:38:01

回复(0)

0

题不难,就是分类情况多了些

def get_score(s):

score, award = 0, 0

# mark标记各类型个数,分别是小写字母,大写字母,数字,符号个数

mark = [0] * 4

score += (len(s)<=4)*5 + (4< len(s) <8)*10+ (len(s)>=8)*25

for i in s:

if 'A' <= i <= 'Z':

mark[0] += 1

elif 'a' <= i <= 'z':

mark[1] += 1

elif '0' <= i <= '9':

mark[2] += 1

elif '!' <= i <= '~':

mark[3] += 1

score += (mark[0] >= 1)*10 + (mark[1] >= 1)*10

score += (mark[2] == 1)*10 + (mark[2] > 1)*25

score += (mark[3] == 1)*10 + (mark[3] > 1)*25

if mark[0]+mark[1] < 0:

award = 0

elif (mark[0]>0 and mark[1]>0) and (mark[2]>0 and mark[3]>0):

award = 5

elif mark[0]+mark[1] > 0 and (mark[2]>0 and mark[3]>0):

award = 3

elif mark[0]+mark[1] > 0 and mark[2]>0:

award = 2

score += award

if score >= 90:

print('VERY_SECURE')

elif score >= 80:

print('SECURE')

elif score >= 70:

print('VERY_STRONG')

elif score >= 60:

print('STRONG')

elif score >= 50:

print('AVERAGE')

elif score >= 25:

print('WEAK')

else:

print('VERY_WEAK')

while True:

try:

s= input()

get_score(s)

except:

break

编辑于 2020-07-18 20:04:31

回复(0)

1

while(True):

try:

s = input()

secLength = len(s)

upperCount = 0

lowerCount = 0

numCount = 0

score = 0

charCount = 0

for i in s:

# 数字个数

if(i.isdigit()):

numCount+=1

elif(i.islower()):

lowerCount+=1

elif(i.isupper()):

upperCount+=1

else:

charCount+=1

if (secLength <= 4):

score += 5

elif (5 < secLength <= 7):

score += 10

elif (secLength >= 8):

score += 25

if (numCount == 0):

score += 0

elif (numCount==1):

score += 10

elif (numCount >= 1):

score += 20

if(upperCount==1 and lowerCount==0):

score+=0

elif(upperCount==0 and lowerCount>0) or (upperCount>0 and lowerCount==0):

score+=10

elif(upperCount>0 and lowerCount>0):

score+=20

except:

break

if (charCount == 0):

score += 0

elif (charCount==1):

score += 10

elif (charCount >= 1):

score += 25

if(numCount>0 and (upperCount>0 or lowerCount>0) and charCount==0):

score+=2

elif (numCount > 0 and (upperCount > 0 or lowerCount > 0) and charCount > 0):

score += 3

elif (numCount > 0 and upperCount > 0 and lowerCount > 0 and charCount == 0):

score += 5

if score >= 90:

print('VERY_SECURE')

elif score >= 80:

print('SECURE')

elif score >= 70:

print('VERY_STRONG')

elif score >= 60:

print('STRONG')

elif score >= 50:

print('AVERAGE')

elif score >= 25:

print('WEAK')

else:

print('VERY_WEAK')

发表于 2020-07-11 12:11:55

回复(0)

0

Python3 暴力解法

import sys

for line in sys.stdin:

pwd = line.strip()

length_score = 5 if len(pwd)<=4 else 10 if len(pwd)<=7 else 25

chars, nums, symbol = '', '', ''

for s in pwd:

if s.isalpha(): chars += s

elif s.isnumeric(): nums += s

else: symbol += s

cha_score = 0 if len(chars)==0 else 10 if chars.isupper() or chars.islower() else 25

num_score = 10 if len(nums)==1 else 25 if len(nums)>1 else 0

symbol_score = 0 if len(symbol)==0 else 10 if len(symbol) == 1 else 25

if cha_score==25 and num_score and symbol_score: bonus = 5

elif cha_score and num_score and symbol_score: bonus = 3

else: bonus = 2

total_score = length_score + cha_score + num_score + symbol_score + bonus

if total_score >= 90: print('VERY_SECURE')

elif total_score >= 80: print('SECURE')

elif total_score >= 70: print('VERY_STRONG')

elif total_score >= 60: print('STRONG')

elif total_score >= 50: print('AVERAGE')

elif total_score >= 25: print('WEAK')

else: print('VERY_WEAK')

编辑于 2020-04-29 21:46:08

回复(0)

0

#!usr/bin/env python

while 1:

try:

string = raw_input()

count = 0

upper = []

lower = []

digit = []

other = []

length = len(string)

if length <= 4:

count += 5

elif length >= 5 and length <= 7:

count += 10

elif length >= 8:

count += 25

for i in range(length):

if string[i].isalpha():

if string[i] >= 'a' and string[i] <= 'z':

lower.append(string[i])

elif string[i] >= 'A' and string[i] <= 'Z':

upper.append(string[i])

elif string[i].isdigit():

if string[i] not in digit:

digit.append(string[i])

else:

if string[i] not in other:

other.append(string[i])

if len(lower) != 0 and len(upper) != 0:

count += 20

elif len(lower) + len(upper) != 0:

count += 10

if len(digit) == 1:

count += 10

elif len(digit) > 1:

count += 20

if len(other) == 1:

count += 10

elif len(other) > 1:

count += 25

if len(lower) > 1 and len(upper) > 1 and len(digit) > 1 and len(other) > 1:

count += 5

elif (len(lower) > 1&nbs***bsp;len(upper) > 1) and len(digit) > 1 and len(other) > 1:

count += 3

elif (len(lower) > 1&nbs***bsp;len(upper) > 1) and len(digit) > 1:

count += 2

if count >= 90:

print "VERY_SECURE"

elif count >= 80:

print "SECURE"

elif count >= 70:

print "VERY_STRONG"

elif count >= 60:

print "STRONG"

elif count >= 50:

print "AVERAGE"

elif count >= 25:

print "WEAK"

elif count >= 0:

print "VERY_WEAK"

except:

break

发表于 2020-04-12 19:10:17

回复(0)

0

简单粗暴,一条一条加。

while True:

try:

ss = input()

def level(grade):

if grade>=90:

print('VERY_SECURE')

elif grade>=80:

print('SECURE')

elif grade>=70:

print('VERY_STRONG')

elif grade>=60:

print('VSTRONG')

elif grade>=50:

print(' AVERAGE')

elif grade>=25:

print('WEAK')

else:

print('VERY_WEAK')

grade = 0

if len(ss)>=8:

grade += 25

elif len(ss)<=4:

grede += 5

else:

grade+=10

f = 0

F = 0

nums = 0

other = 0

for info in ss:

if ord(info)<=ord('z') and ord(info)>=ord('a'):

f += 1

elif ord(info)<=ord('Z') and ord(info)>=ord('A'):

F +=1

elif ord(info)<=ord('9') and ord(info)>=ord('0'):

nums += 1

else:

other += 1

if len(ss)==f&nbs***bsp;len(ss)==F:

grade += 10

elif f>0 and F>0:

grade += 20

if nums == 1:

grade += 10

elif nums >1:

grade += 20

if other == 1:

grade += 10

elif other >1:

grade += 25

if f>0 and F>0 and nums>0 and other>0:

grade+=5

elif (f>0&nbs***bsp;F>0) and nums>0 and other>0:

gade += 3

elif (f>0&nbs***bsp;F>0) and nums>0:

grade += 2

level(grade)

except:

break

发表于 2020-04-08 19:46:13

回复(0)

4

from functools import reduce

while True:

try:

s = input()

password = []

password.extend(s)

p1,p2,p3,p4 = [],[],[],[]

for i in password:

if i.isupper():

p1.append(i)

elif i.islower():

p2.append(i)

elif i.isdigit():

p3.append(i)

else:

p4.append(i)

score = []

if len(s) <= 4:

score.append(5)

elif 5 <= len(s) <= 7:

score.append(10)

else:

score.append(25)

if p1 or p2:

if len(p1) == 0 or len(p2) == 0:

score.append(10)

else:

score.append(20)

if len(p3) == 1:

score.append(10)

elif len(p3) > 1:

score.append(20)

if len(p4) == 1:

score.append(10)

elif len(p4) > 1:

score.append(25)

if (p1 or p2) and  p3:

score.append(2)

elif (p1 or p2) and p3 and p4:

score.append(3)

elif p1 and p2 and p3 and p4:

score.append(5)

result = reduce(lambda x,y : x+y,score)

if result >= 90:

print('VERY_SECURE')

elif result >= 80:

print('SECURE')

elif result >= 70:

print('VERY_STRONG')

elif result >= 60:

print('STRONG')

elif result >= 50:

print('AVERAGE')

elif result >= 25:

print('WEAK')

elif result >= 0:

print('VERY_WEAK')

except:break

编辑于 2020-03-30 10:45:58

回复(8)

0

def longenth_score(pwd):#判断长度

if len(pwd)<=4:

return 5

elif len(pwd)>=8:

return 25

else:

return 10

def char_score(pwd):#

pn =0#这里都是用一个标注位来先记录字符的数量

for p in pwd:

if p.isalpha():

pn+=1

if pn==0:

return 0

elif pwd.isupper()&nbs***bsp;pwd.islower():

return 10

else:

return 20

def num_score(pwd):

nn = 0#这里记录数字的个数,方便下面的判断

for n in pwd:

if n.isdigit():

nn +=1

if nn ==0:

return 0

elif nn ==1:

return 10

else:

return 20

def sym_score(pwd):

for i in pwd:#这里要注意,排除掉字母和数字,剩下的判为符号

if i.isdigit()&nbs***bsp;i.isalpha():

pwd = pwd.replace(i,'0')#这里用0代替字母和数字,是个灵活的判断,下面count()需要保持一致

sn = len(pwd) - pwd.count('0')

if sn == 0:

return 0

elif sn ==1 :

return 10

else:

return 25

def reward_score(c_score,n_score,s_score):

if c_score == 20 and n_score>0 and s_score>0:

return 5

elif c_score == 10 and n_score>0 and s_score>0:

return 3

elif c_score > 10 and n_score>0 and s_score==0:

return 2

else:

return 0

def pwd_level(total_score):

if total_score>=90:

return 'VERY_WEAK'

elif total_score >=80:

return 'WEAK'

elif total_score >=70:

return 'VERY_STRONG'

elif total_score >=60:

return 'STRONG'

elif total_score >=50:

return 'AVERAGE'

elif total_score >=25:

return 'SECURE'

else:

return 'VERY_SECURE'

if __name__ == '__main__':

while True:

try:

pwd = input()

l_score = longenth_score(pwd)

c_score = char_score(pwd)

n_score = num_score(pwd)

s_score = sym_score(pwd)

r_score = reward_score(c_score,n_score,s_score)

total_score = l_score+c_score+n_score+s_score+r_score

print(pwd_level(total_score))

except:

break

发表于 2020-01-31 17:47:50

回复(0)

0

pwd = str(input())

s = 0

#下面这三个变量代表数字,字母和符号的个数

num_n = 0

num_a = 0

num_s = 0

for i in pwd:

if i.isdigit() == True:

num_n += 1

elif i.isalpha() == True:

num_a += 1

else:

num_s += 1

if len(pwd) >= 8:

s += 25

elif len(pwd) >= 5:

s += 10

else:

s += 5

if num_a == 0:

s += 0

elif pwd.lower() == pwd or pwd.upper == pwd:

s += 10

else:

s += 20

if num_n == 0:

s += 0

elif num_n == 1:

s += 10

else:

s += 20

if num_s == 0:

s += 0

elif num_s == 1:

s += 10

else:

s += 25

if num_n != 0 and num_a != 0 and num_s == 0:

s += 2

if num_n != 0 and num_a != 0 and num_s != 0:

if pwd.lower() == pwd or pwd.upper == pwd:

s += 3

else:

s += 5

if s >= 90:

print('VERY_SECURE')

elif s >= 80:

print('SECURE')

elif s >= 70:

print('VERY_STRONG')

elif s >= 60:

print('STRONG')

elif s >= 50:

print('AVERAGE')

elif s >= 25:

print('WEAK')

else:

print('VERY_WEAK')

,,,

系统提示:

用例:

PKyt&&fmE^`aBC)t$`Jh^^Rxr(EQ&!N(u)^)`

对应输出应该为:

VERY_STRONG

你的输出为:

空.请检查一下你的代码,有没有循环输入处理多个case.点击查看如何处理多个case

但我自己运行的时候输入PKyt&&fmE^`aBC)t$`Jh^^Rxr(EQ&!N(u)^)`,正常返回了VERY_STRONG

是哪里出了问题?

'''

发表于 2020-01-10 20:24:20

回复(0)

3

def longenth_score(pwd):

if len(pwd)<=4:

return 5

elif len(pwd)>=8:

return 25

else:

return 10

def char_score(pwd):

pn =0

for p in pwd:

if p.isalpha():

pn+=1

if pn==0:

return 0

elif pwd.upper()==pwd&nbs***bsp;pwd.lower()==pwd:

return 10

else:

return 20

def num_score(pwd):

nn = 0

for n in pwd:

if n.isdigit():

nn +=1

if nn ==0:

return 0

elif nn ==1:

return 10

else:

return 20

def sym_score(pwd):

for i in pwd:

if i.isdigit()&nbs***bsp;i.isalpha():

pwd = pwd.replace(i,'0')

sn = len(pwd) - pwd.count('0')

if sn == 0:

return 0

elif sn ==1 :

return 10

else:

return 25

def reward_score(c_score,n_score,s_score):

if c_score == 20 and n_score>0 and s_score>0:

return 5

elif c_score == 10 and n_score>0 and s_score>0:

return 3

elif c_score > 10 and n_score>0 and s_score==0:

return 2

else:

return 0

def pwd_level(total_score):

if total_score>=90:

return 'VERY_WEAK'

elif total_score >=80:

return 'WEAK'

elif total_score >=70:

return 'VERY_STRONG'

elif total_score >=60:

return 'STRONG'

elif total_score >=50:

return 'AVERAGE'

elif total_score >=25:

return 'SECURE'

else:

return 'VERY_SECURE'

if __name__ == '__main__':

while True:

try:

pwd = input()

l_score = longenth_score(pwd)

c_score = char_score(pwd)

n_score = num_score(pwd)

s_score = sym_score(pwd)

r_score = reward_score(c_score,n_score,s_score)

total_score = l_score+c_score+n_score+s_score+r_score

print(pwd_level(total_score))

except:

break 笨方法,还算清晰,示例是错的差点坑死我

发表于 2019-12-21 19:46:19

回复(0)

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/543608.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

入侵分析十诫

这些年来&#xff0c;笔者一直积极参与入侵检测分析师的培训和发展工作&#xff0c;同时还担任了 SANS 信息安全课程《深入入侵检测》&#xff08;编号503&#xff09;的授课导师。笔者发现自己一直在不断改变对有效入侵检测的哲学认识。然而&#xff0c;不论该哲学如何演化&am…

python 寻找数组的中心索引_Leetcode724查找数组Python的中心索引,LeetCode724,寻找,python...

寻找数组的中心索引这一次打卡不知道又摸了多久的鱼&#xff0c;周五没做题&#xff0c;周日补上。题目给定一个整数类型的数组 nums&#xff0c;请编写一个能够返回数组“中心索引”的方法。我们是这样定义数组中心索引的&#xff1a;数组中心索引的左侧所有元素相加的和等于右…

算法--动态规划

动态规划需要弄清楚两个问题&#xff0c;首先子问题的最优解&#xff0c;其次重叠子问题。首先来看一个问题吧&#xff1a; 有3种硬币&#xff0c;对应的面值是1、2、4&#xff0c;如果要组成11元&#xff0c;最少需要几枚硬币呢&#xff1f; 思路&#xff1a;考虑组成0元&…

[译]机器人操作系统简介:终极机器人应用框架(上)

2019独角兽企业重金招聘Python工程师标准>>> [译]机器人操作系统简介&#xff1a;终极机器人应用框架 /*** 原文出处&#xff1a;https://www.toptal.com/robotics/introduction-to-robot-operating-system* author dogstar.huang <chanzonghuanggmail.com> 2…

底量超顶量超级大黑马指标源码_一旦出现底量超顶量形态,是超级大黑马诞生!...

一、底量超顶量当股价形成头部时&#xff0c;成交量必须放大&#xff0c;这种放量虽然不能和上市前三天相比&#xff0c;但也必须是相对天量&#xff0c;随即出现天价。但是&#xff0c;有些个股在形成头部之时&#xff0c;成交量只是象征性地放大&#xff0c;换手率低&#xf…

AIKit v4.11.0 – WordPress AI 自动编写器、聊天机器人、写作助手和内容重定向器 / OpenAI GPT 插件

AIKit v4.11.0&#xff1a;WordPress的AI革命 一、引言 AIKit v4.11.0是一款为WordPress用户精心设计的强大插件&#xff0c;该插件集成了OpenAI的GPT-3技术&#xff0c;为用户提供了前所未有的AI写作和聊天机器人功能。此版本的推出&#xff0c;将WordPress的功能扩展到了全新…

精华阅读第6期|程序猿的世界,你不懂!

上周&#xff0c;微信圈被一篇文章刷屏了&#xff01;那就是西乔出品的《你为什么总招不到程序员&#xff1f;》&#xff0c;西乔的漫画之所以这么火&#xff0c;很重要的原因就是她懂程序猿的生活&#xff0c;同时作品也能够引起大家的共鸣。其实&#xff0c;移动开发精英俱乐…

ai建立使用图案_ai自定义图案的方法详解步骤图

1.ai中如何制作剪纸纹理图案确定以后&#xff0c;大概可以看到这样的操作界面&#xff0c;界面上多了一个”图案选项“面板&#xff0c;在软件界面中心&#xff0c;可以看到的图案是5排5列的图形&#xff0c;也就是”图案选项“下面显示的份数”5X5“&#xff0c;也可以自己另外…

nginx(五)rewrite

**ngx_http_rewrite_module模块配置**将请求的uri基于正则表达式进行重写&#xff1b;例&#xff1a;http-->httpsdomain1.tld-->domain2.tlduri1-->uri2指令&#xff1a;rewrite regex replacement [flag];regex:正则表达式&#xff0c;用于匹配用户请求的uri&#x…

恒生估值系统_恒生指数和恒生国企指数投资价值分析

恒生指数和恒生国企指数都是港股的大蓝筹指数。恒生指数是从香港股票市场挑选出50只优质蓝筹股票组成的指数。恒生国企指数又称为H股指数。H股指注册地在内地&#xff0c;但是上市地在香港的外资股票。恒生国企指数的成分股数目是没有限制的&#xff0c;但是必须为市值最大&…

java程序练习

数组求和作业 开发环境&#xff1a;java 工具&#xff1a;eclipse 两种数据类型excel和csv 在同学建议下&#xff0c;我选择用csv文件打开&#xff0c;这就引来了第一个问题&#xff0c;在java中如何调用csv文件。以下是我百度的结果 http://www.educity.cn/java/627496.html &…

mysql数据库增删改查关键字_MySQL数据库(增删改查语句)

MySQL数据库(增删改查语句)一.登录数据库&#xff1a;----> mysql -uroot -proot;(对应用户名和密码)二.SQL语句&#xff1a; 数据定义语言DDL 用来定义数据库、表、列&#xff0c;关键字为 create、alter、drop 数据操作语言DML 用来进行数据库更新的操作&#xf…

ECC 算法

一、简介 1&#xff09;椭圆曲线密码学的初级读本 http://8btc.com/thread-1240-1-1.html 2&#xff09;ECC加密算法入门介绍 http://www.pediy.com/kssd/pediy06/pediy6014.htm &#xff13;&#xff09;ECC算法原理的认识 http://blog.csdn.net/sszgg2006/article/details/41…

hwd是长宽高吗_五菱皮卡要来了,五种形态任你选,颜值是你期待的吗?

近日&#xff0c;网友上传了五菱皮卡的渲染图&#xff0c;引起了大家对五菱皮卡的热烈讨论。在刚过去的2020年&#xff0c;五菱凭借性价比超高的宏光MINI EV成为了新能源领域的领头羊&#xff0c;而后推出的‘大四座’家用车五菱凯捷也取得了五万台的预定量&#xff0c;五菱一时…

Java多线程:用三个线程控制循环输出10次ABC

题目&#xff1a;有A,B,C三个线程, A线程输出A, B线程输出B, C线程输出C&#xff0c;要求, 同时启动三个线程, 按顺序输出ABC, 循环10次。 解题思路&#xff1a;要按顺序输出ABC, 循环10次&#xff0c;就要控制三个线程同步工作&#xff0c;也就是说要让三个线程轮流输出&#…

mysql if语句后面执行两个语句_MySQL的if,case语句使用总结

Mysql的if既可以作为表达式用&#xff0c;也可在存储过程中作为流程控制语句使用&#xff0c;如下是做为表达式使用&#xff1a;IF表达式IF(expr1,expr2,expr3)如果 expr1 是TRUE (expr1 <> 0 and expr1 <> NULL)&#xff0c;则 IF()的返回值为expr2; 否则返回值则…

mac mysql 默认字符集_MacOS中Mysql设置默认字符集

一、查看字符集mysql> show variables like character%;-------------------------------------------------------------------------------------| Variable_name | Value |----------------------------…

原创 通过PEB获得进程路径 (附完整工程)

完整工程&#xff1a;http://files.cnblogs.com/files/Gotogoo/%E8%BF%9B%E7%A8%8B%E7%AE%A1%E7%90%86%E5%99%A8%28x86%26%26x64%29.zip PEB&#xff08;Process Environment Block&#xff0c;进程环境块&#xff09;存放进程信息&#xff0c;每个进程都有自己的PEB信息。位于…

土豚mysql_树莓派LNMP配置

修改软件源1.首先备份源列表&#xff1a;sudo cp /etc/apt/sources.list /etc/apt/sources.list_backup2.而后打开sources.list文件修改&#xff1a;sudo vim /etc/apt/sources.list软件源可已在网上查查&#xff0c;有ubuntu官方的、阿里云的、清华的等需要注意首先查看自己的…

Windbg SOS and CLR版本不一致的解决方案

由于测试服务环境与Windbg运行环境的差异&#xff0c;这就可能出现Windbg在分析dump文件时.net sos.dll和mscordacwks.dll版本不一致问题&#xff0c;从而导致windbg调试器的扩展命令无法正常使用&#xff0c;具体的解决方法如下&#xff1a;1.首先定义Windgb symbols路径&…