|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
https://fishc.com.cn/forum.php?m ... peid%26typeid%3D398 动手题最后一题:
1. 请用已学过的知识编写程序,找出小甲鱼藏在下边这个长字符串中的密码,密码的埋藏点符合以下规律:
a) 每位密码为单个小写字母
b) 每位密码的左右两边均有且只有三个大写字母
小甲鱼的答案好复杂,不是直接判断字符串里的字符前四位和后四位的大小写就可以了吗?如下:
a=str('''复制黏贴的字符串''')
b=[]
for i in range(3,(len(a)-3)):
if (a[i].islower()==True) and (a[i-1].isupper()==True) and (a[i-2].isupper()==True) and (a[i-3].isupper()==True) and (a[i-4].islower()==True or i==3) and (a[i+1].isupper()==True) and (a[i+2].isupper()==True) and (a[i+3].isupper()==True) and (a[i+4].islower()==True):
b.append(a[i])
print (b)
不懂答案为啥如此复杂,有大神可以帮忙解答下吗 |
|