题解列表
个人思路,随便看看吧
摘要:解题思路:学会列表的相关操作很重要注意事项:参考代码:def fun(n): l1 = [n] while n != 1: if n % 2 == 0: ……
1023——————选择排序
摘要: #一行
for i in sorted(list(map(int,input().split()))):print(i)
#两行
n=list(map(int,inpu……
1517——————蓝桥杯算法提高VIP-实数相加
摘要:**import** 导入模块,每次使用模块中的函数都要是定是哪个模块。
**from…import *** 导入模块,每次使用模块中的函数,直接使用函数就可以
**decimal 模块**:……
1092——————A+B for Input-Output Practice
摘要:题目:1092: A+B for Input-Output Practice
**题目描述**
Your task is to calculate the sum of some integers……
1091—————— A+B for Input-Output Practice (VII)
摘要:题目:1091: A+B for Input-Output Practice (VII)
**题目描述**
Your task is to Calculate a + b.
——翻译(来源百度翻……
1090—————— A+B for Input-Output Practice (VI)
摘要:题目:1090: A+B for Input-Output Practice (VI)
**题目描述**
Your task is to calculate the sum of some int……
1089—————— A+B for Input-Output Practice (V)
摘要:题目:1089: A+B for Input-Output Practice (V)
**题目描述**
Your task is to calculate the sum of some inte……
1088——————A+B for Input-Output Practice (IV)
摘要:题目:1088: A+B for Input-Output Practice (IV)
**题目描述**
Your task is to Calculate the sum of some int……
1087——————A+B for Input-Output Practice (III)
摘要:题目:1087: A+B for Input-Output Practice (III)
**题目描述**
Your task is to Calculate a + b.
——翻译(来源百度翻……