求助代码分析
str1 = '''ABSaDKSbRIHcRHGcdDIF'''countA = 0# 统计前边的大写字母
countB = 0# 统计小写字母
countC = 0# 统计后边的大写字母
length = len(str1)
for i in range(length):
if str1 == '\n':
continue
"""
|如果str1是大写字母:
|-- 如果已经出现小写字母:
|-- -- 统计后边的大写字母
|-- 如果未出现小写字母:
|-- -- 清空后边大写字母的统计
|-- -- 统计前边的大写字母
"""
if str1.isupper():
if countB:
countC += 1
else:
countC = 0
countA += 1
"""
|如果str1是小写字母:
|-- 如果小写字母前边不是三个大写字母(不符合条件):
|-- -- 清空所有记录,重新统计
|-- 如果小写字母前边是三个大写字母(符合条件):
|-- -- 如果已经存在小写字母:
|-- -- -- 清空所有记录,重新统计(出现两个小写字母)
|-- -- 如果该小写字母是唯一的:
|-- -- -- countB记录出现小写字母,准备开始统计countC
"""
if str1.islower():
if countA != 3:
countA = 0
countB = 0
countC = 0
else:
if countB:
countA = 0
countB = 0
countC = 0
else:
countB = 1
countC = 0
target = i
"""
|如果前边和后边都是三个大写字母:
|-- 如果后边第四个字母也是大写字母(不符合条件):
|-- -- 清空记录B和C,重新统计
|-- 如果后边仅有三个大写字母(符合所有条件):
|-- -- 打印结果,并清空所有记录,进入下一轮统计
"""
if countA == 3 and countC == 3:
if i+1 != length and str1.isupper():
countB = 0
countC = 0
else:
print(str1, end='')
countA = 3
countB = 0
countC = 0
这段代码看不懂,可以帮忙分析一下吗
可是分析已经详详细细地写在注释里了呀 请挑选出你认为自己不明白的地方。
如楼上大佬所说,已经注释了挺多的了,按理来讲是通俗易懂的。 Daniel_Zhang 发表于 2021-1-15 16:37
请挑选出你认为自己不明白的地方。
如楼上大佬所说,已经注释了挺多的了,按理来讲是通俗易懂的。
if str1.isupper():
if countB:
countC += 1
else:
countC = 0
countA += 1
就这一段不懂 本帖最后由 jackz007 于 2021-1-15 17:49 编辑
countA 代表 password 字符前的大写字母计数,countC 代表 password 字符后的大写字母计数,显然,这是在判断当前这个大写字母,应该纳入 countA 还是 countC 的计数。其依据就是 countB,因为,如果 password 字符没有被遇到过,那么,当前字符应该被纳入 countA 的计数,否则,就应该被纳入 countC。 ffff‘ 发表于 2021-1-15 17:09
if str1.isupper():
if countB:
countC += 1
if countA == 3 and countC == 3:
if i+1 != length and str1.isupper():
countB = 0
countC = 0
else:
print(str1, end='')
countA = 3
countB = 0
countC = 0
大佬,还有一个问题,为什么最后还要把countA置3呢
页:
[1]