查理在牛客网
查理在牛客网
全部文章
题解
py学习笔记(11)
归档
标签
去牛客网
登录
/
注册
查理在牛客网的博客
全部文章
/ 题解
(共48篇)
题解 | #K形图案#
n=int(input()) for i in range(n+1,1,-1): print("* "*i) for j in range(1,n+2): print("* "*j) 不知道为啥,感觉和排行前几名的人写的基本一致,但是内存占用的却比他们是两倍多,奇怪?
Python3
序列
2022-01-19
1
376
题解 | #平均身高#
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
题解 | #计算一元二次方程#
import math a,b,c=map(float,input().split()) data=b**2-4*a*c x=-1*b/(2*a) kai_d=math.sqrt(data) q1=(-1*b-kai_d)/(2*a) q2=(-1*b+kai_d)/(2*a) if a==0.0...
Python3
乘除法
除法
未解决
2022-01-19
0
329
题解 | #变种水仙花#
for a in range(1,10): for b in range(0,10): for c in range(0,10): for d in range(0,10): for e in range(0,10): ...
Python3
切片
2022-01-19
1
467
题解 | #三角形判断#
while True: try: a,b,c=map(int,input().split()) if a+b>c and a+c>b and b+c>a: if a==b==c: pri...
Python3
2022-01-19
0
322
题解 | #计算单位阶跃函数#
''' 为什么直接空格输入不可以呢? while True: try: if float(input())>0: print("1") elif float(input())<0: print("0"...
Python3
input输入
2022-01-19
0
440
题解 | #判断是元音还是辅音#
while True: try: a=("A","E","I","O","U","a","e","i","o","u") t=input() if t in a: print("Vowel") else:...
Python3
序列
2022-01-18
2
320
题解 | #学生基本信息输入输出#
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
题解 | #字母大小写转换#
while True: try: list=input().split() for i in range(len(list)): if list[i].isupper(): print(list[i].l...
Python3
列表
字符串
2022-01-18
0
282
题解 | #判断是不是字母#
while True: try: list=input() if list.isalpha(): print("{} is an alphabet.".format(list)) else: pr...
Python3
input输入
2022-01-18
0
325
首页
上一页
1
2
3
4
5
下一页
末页