旧版Python20讲动动手第2题求助
代码如下:str1 = ''' ********* '''
list1 = []
length = len(str1)
for i in range(length) :
if str1 == '\n':
continue
strleft1 = str(str1)
strleft2 = str(str1)
strright1 = str(str1)
strright2 = str(str1)
if strleft1.isupper() and not strleft2.isupper():
if str1.islower():
if strright1.isupper() and not strright2.isupper():
list1.append(str1)
print(list1)
这样写又什么问题吗 怎么不给错误的具体情况发出来呢 曾哥870 发表于 2021-6-7 10:56
怎么不给错误的具体情况发出来呢
运行结果为:['u', 'i', 'l', 'o', 'v', 'e', 'f', 'i', 's', 'd', 'h', 'c']
多出了一个u 和 d hypomania 发表于 2021-6-7 10:59
运行结果为:['u', 'i', 'l', 'o', 'v', 'e', 'f', 'i', 's', 'd', 'h', 'c']
多出了一个u 和 d
多出这些字符的原因是在字符判断中将 \n 字符也加入判断了
虽然你代码中判断遇到 \n 就重新循环,但是实际上在判断 小写字符前后,\n 还是属于会被算入前或后三个字符中去的
所以你需要先将 str1 中的换行符给替换,即: str1.replace('\n','')
参考代码:
str1 = ''' ******* '''
list1 = []
length = len(str1)
str1 = str1.replace('\n','')
for i in range(length) :
strleft1 = str(str1)
strleft2 = str(str1)
strright1 = str(str1)
strright2 = str(str1)
if strleft1.isupper() and not strleft2.isupper():
if str1.islower():
if strright1.isupper() and not strright2.isupper():
list1.append(str1)
print(list1)
Twilight6 发表于 2021-6-7 12:37
多出这些字符的原因是在字符判断中将 \n 字符也加入判断了
虽然你代码中判断遇到 \n 就重新循环, ...
哦,明白了,谢谢{:5_95:} 那个长字符串是啥?
页:
[1]