函数作业20讲
第20讲函数作业,问题见注释str1 = '''输入的字符串'''
countA = 0# 统计前边的大写字母
countB = 0# 统计小写字母
countC = 0# 统计后边的大写字母
length = len(str1)
for i in range(length):
if str1 == '\n':
continue
#下面这六行为什么不能把中间四行省略了?,if countB不是一定是false吗?
if str1.isupper():
if countB:
countC += 1
else:
countC = 0
countA += 1
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
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 谁说的哦,它的else里面不是有把countB设置为True的步骤吗? countB 有可能为 1,有可能为 0,而 if countB 等价于 if countB != 0,当 countB 不为 0 就执行 if 下的语句,否则执行 else 下的语句 if countB: 的意思就是 if countB != 0也就是说只要 countB 不为0 就会执行if下面的语句 否则也就是 countB 为0 的时候,执行else 下的语句。
但是 countB 可能是为1 ,也可能是为0 的为1的时候就执行if下面的语句,为0的时候就执行else下面的语句。
那你看看,这里谁规定了countB 一定为0吗?那既然不是一定为0 ,你凭什么说 if countB :为False也就是你凭什么说if countB != 0一定为False 一定为假一定不成立。
你仔细看看你的代码,是不是有把 countB 执行为True 的语句,细心一点。
页:
[1]