题解列表

筛选

1003一行解(Python)

摘要:解题思路:注意事项:参考代码:print(''.join(list(map(lambda x : chr(ord(x) + 4), input()))))基础代码(完全问题题目要求)c……

2861: 验证子串(python)

摘要:解题思路:注意事项:参考代码:a = input().strip() # 注意把前导空格去掉 b = input().strip() if a in b:     print("%s is s……

2858: 整理药名(python)

摘要:解题思路:注意事项:参考代码:n = int(input()) while True: try: s = input() s1 = "" for i in s:   ……

2857: 加密的病历单(python)

摘要:解题思路:注意事项:参考代码:s = input() s1 = "" for i in s:     if (i >= &#39;x&#39; and i <= &#39;z&#39;) or ……

2839: 石头剪刀布(Python)

摘要:解题思路:注意事项:参考代码:N,NA,NB = map(int,input().split()) la = list(map(int,input().split())) lb = list(ma……

2819: 数字反转

摘要:解题思路:注意事项:参考代码:a = input() a = a[::-1]  # 字符串逆序 if a[len(a)-1] == &#39;-&#39;:  # 如果输入负数     a = ……