题解列表

筛选

1196: 去掉空格

摘要:解题思路:注意事项:参考代码:while True:     try:         s = input()         print(s.replace(' ', &#39……

1042: [编程入门]电报加密

摘要:解题思路:注意事项:参考代码:s = input() arr = "" for i in range(len(s)):     if s[i] == ' ':         ……

python--study||O.o

摘要:参考代码:#   设置四个边界,层层遍历 row, column = map(int, input().split()) arr = [list(map(int, input().split(……

1099: 校门外的树,使用列表切片

摘要:解题思路:运用列表的切片操作,将区间内的点都设为0注意事项:给的区间可能会有重叠参考代码:L,m = map(int,input().strip().split())tree =[1]*(L+1)fo……

python--study||O.o

摘要:参考代码:#   重点就是判断条件的顺序 n = int(input()) square = [[0] * (2 * n - 1) for _ in range(2 * n - 1)] x, y……

python解求得最大值

摘要:### 解题代码: ```python n = int(input()) sz = [list(map(int, input().strip().split())) for _ in range……

自定义函数之数字后移

摘要:解题思路:注意事项:参考代码:n = int(input()) arr = list(map(str, input().split())) m = int(input()) print(&#39……

自定义函数之整数处理

摘要:解题思路:注意事项:先交换大的,再交换小的。参考代码:arr = list(map(int, input().split())) max_number = max(arr) min_number ……

自定义函数之字符类型统计

摘要:解题思路:注意事项:参考代码:def function(x):     a, b, c, d = 0, 0, 0, 0     for i in x:         if i.isalpha(……