查理在牛客网
查理在牛客网
全部文章
题解
py学习笔记(11)
归档
标签
去牛客网
登录
/
注册
查理在牛客网的博客
全部文章
/ 题解
(共8篇)
题解 | #小乐乐算平均分#
a,b,c=map(float,input().split()) print("{:0.2f} {:0.2f}".format(round(a+b+c,2),round((a+b+c)/3,2))) 震惊 我看大神 直接就sum(list)了,sum(list)/len(list)了,太方便了吧...
Python3
列表
print输出
2022-01-19
0
353
题解 | #平均身高#
a,b,c,d,e=map(float,input().split()) print("{:0.2f}".format((a+b+c+d+e)/5)) 因为要求保留两位小数,所以我用了round(,2) 但结果不对,不知道为什么,好像做了四舍五入。??
Python3
print输出
2022-01-19
0
303
题解 | #学生基本信息输入输出#
a,b=input().split(";") x,y,z=b.split(",") print("The each subject score of No. {} is {:0.2f}, {:0.2f}, {:0.2f}".format(a,round(float(x),2),round(float...
Python3
print输出
round
精度
2022-01-18
0
495
题解 | #字符串内排序#
a=input() list=[] #print(len(a)) for i in range(len(a)): list.append(a[i]) #bb=list[::-1] list.sort() for i in range(len(list)): print(list[i...
Python3
print输出
列表
列表添加
字符串
2022-01-17
1
419
题解 | #BC13 ASCII码#
list=[73,32,99,97,110,32,100,111,32,105,116,33] for i in list: print(chr(i),end="") chr()可以把 int整型转为 对应的ASCII码 那么反过来的话,int("I")可以对应得到73吗?—— ...
Python3
print输出
2022-01-17
0
468
题解 | #字符圣诞树#
我的笨方法: a=input() print(4*" "+a) print(3*" "+a+" "+a) print(2*" "+a+" "+a+" "+a) print(1*" "+a+" "+a+" "+a+" "+a) print(a+" "+a+" "+a+" "+a+" "+a) 看了大...
Python3
print输出
未解决
print输出
2022-01-17
0
363
题解 | #缩短二进制#
print(oct(1234).replace("o",""),hex(1234).upper()) oct(十进制数) 转换为八进制数————??括号里好像不一定是十进制数,但是我输入二进制的0001,为什么程序会报错呢?————同样道理,hex(00001)也不行呢? (括号写对的英文状态也不行...
Python3
print输出
2022-01-16
1
485
题解 | #十六进制转十进制#
#import math print("%15s" %int("ABCDEF",16)) int(数值,相应进制数)可以转化为十进制数 所以int("ABCDEF",16) 是将这个已经知道的16进制数转化为十进制。 因为要求控制输出的宽度,所以采用%15d控制了,%15s也行(??他俩区别是一个数...
Python3
print输出
2022-01-16
0
454