零基础入门学习Python第20讲课后动手题1
以下是小甲鱼老师的答案: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
我的语句如下,运行结果目前和老师一样:
length = len(str1)
for i in range(3,length-3):
if str1.islower() != 0: # 如果遇到小写字母,就看前后各三个是否大写,前后第四个不是大写
if str1.isupper() != 0 and str1.isupper() != 0 and str1.isupper() != 0 and str1.islower() != 0:
if str1.isupper() != 0 and str1.isupper() != 0 and str1.isupper() != 0 and str1.islower() != 0:
print(str1,end='')
我想问问高手,老师的语句比我的好在哪里啊?可以避免什么未发生的问题呢?谢谢
length = len(str1)
for i in range(3,length-3):
if str1.islower() != 0: # 如果遇到小写字母,就看前后各三个是否大写,前后第四个不是大写
if str1.isupper() != 0 and str1.islower() != 0 :
if str1.isupper() != 0 and str1.islower() != 0:
print(str1,end='')
兄弟你看下这个毛病在哪?我搞不明白诶 @_sunshine 发表于 2020-12-2 11:39
兄弟你看下这个毛病在哪?我搞不明白诶
从一个帖子上找到了解答,upper在对长字符串判断时会忽略掉特殊字符如:“\n”,而只有一个字符却可以判断。即当字符串中至少有一个区分大小写的字符且这些字符都是大写时返回True。我做题时会忽略字符串的方法诶,加油吧 @_sunshine 发表于 2020-12-2 11:53
从一个帖子上找到了解答,upper在对长字符串判断时会忽略掉特殊字符如:“\n”,而只有一个字符却可以判 ...
我发现如果字符串是“AAAcBBB”这种类型我的程序就会出错,因为我的里面有i+4,超出range的范围了。这个是主要问题。回车符号我觉得好像没有问题吧???
页:
[1]