标题是: 1. 请用已学过的知识编写步调,找出小甲鱼藏在下边这个长字符串中的暗码,暗码的埋藏点符合以下规律: a) 每位暗码为单个小写字母 b) 每位暗码的左右双方均有且只有三个大写字母 我的答案: string1 = “““小甲鱼的string2””” for i in string1: while i.islower: loc = string1.index(i) if string1[loc-3:loc].isupper and string1[loc:loc+3].isupper is True: print(i, end='\n') else: break 我感觉这个是对的,但是不知道为什么做不出来这道找暗码的标题 T T ,求解答 |