题解列表

筛选

自定义函数之数字分离

摘要:解题思路:注意事项:参考代码:def fenli(a):    for i in a:        print(i,end=' ')a = input()fenli(a)……

自定义函数之字符提取

摘要:解题思路:注意事项:参考代码:def tiqu(a):    for i in a:        if i in b:            print(i,end='')a = i……

自定义函数之字符串反转

摘要:解题思路:注意事项:参考代码:def dcvi(m):    for i in range(len(m)):        print(m[len(m)-1-i],end='')m=i……

简单易懂,看懂给个好评!

摘要:解题思路:注意事项:参考代码:n = int(input())s = 0result = 1for i in range(n):    result *= (i+1)    s += resultpr……

用函数写的

摘要:解题思路:注意事项:参考代码:def get_sum(a=4,b=3):    a,b =map(int,input().split())    sum = a%b    print(sum)get_……

递归法(辗转相除法)求最大公约数

摘要:解题思路:用辗转相除法求最大公约数,在借助最大公约数求最小公倍数注意事项:参考代码:def yue(m,n):    if n==0:return m    else:return yue(n,m%n……

简单易懂,看懂给个好评!

摘要:解题思路:注意事项:参考代码:h = 0q = 0hours = []n = int(input())for i in range(n):    q += 1    a, b = map(int, i……

无聊的星期六

摘要:n=[[0]*3]*3 for i in range(3):     n[i]=list(map(int,input().split())) for i in range(3):     pr……