题解列表
python,先打表,找规律
摘要:解题思路:注意事项:参考代码:L,R=map(int,input().split(" "))allnumb=R-L+1no_need=0if L==1 or L==2:……
菲暃要加油——数字诗意
摘要:n=int(input())l=list(map(int,input().split()))s=0from math import *for i in l: if log2(……
数组输出(思路简单)
摘要:解题思路:注意事项:参考代码:# 读取三行输入,每行4个整数,组成3x4的二维列表li1 = list(map(int, input().split()))li2 = list(map(int, in……
sort练习---python
摘要:解题思路:注意事项:参考代码:n,m=map(int,input().split())l=list(map(int,input().split())) #要把列表中的数设为Int型,才能适应sort(……
-计算一个整数N的阶乘
摘要:解题思路:注意事项:参考代码:n=int(input())sum=1for i in range(1,n+1): sum=sum*iprint(sum) &nbs……
1204 大小写转换111111111
摘要:解题思路: 小转大upper()注意事项:参考代码:a=input()b=input()c=input()a1=a.upper()b1=b.upper()c1=c.upper()print(a1)pr……