密码截获——python
摘要:解题思路:注意事项:参考代码:while True: try: L = input() L2 = [] if len(L) == 1: ……
编写题解 1209: 密码截获
摘要:解题思路:注意事项:参考代码:while True:
try:
st=input()
ts=st[::-1]
s=[]
&n
密码截获 (Python代码)
摘要:```python
# 判断一个字符串是否为回文
def func(str1):
length = len(str1)
str2 = ""
for i in rang……