查理在牛客网
查理在牛客网
全部文章
分类
py学习笔记(11)
题解(51)
归档
标签
去牛客网
登录
/
注册
查理在牛客网的博客
TA的专栏
17篇文章
0人订阅
python学习笔记
17篇文章
666人学习
全部文章
(共59篇)
题解 | #平均身高#
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
298
题解 | #计算一元二次方程#
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
473
题解 | #三角形判断#
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
317
题解 | #计算单位阶跃函数#
''' 为什么直接空格输入不可以呢? while True: try: if float(input())>0: print("1") elif float(input())<0: print("0"...
Python3
input输入
2022-01-19
0
438
题解 | #判断是元音还是辅音#
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
316
题解 | #学生基本信息输入输出#
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
493
题解 | #字母大小写转换#
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
280
题解 | #判断是不是字母#
while True: try: list=input() if list.isalpha(): print("{} is an alphabet.".format(list)) else: pr...
Python3
input输入
2022-01-18
0
336
题解 | #kiki算数#
a,b=input().split(" ") c=int(a)+int(b) print(c%100) 刚学的方法 拆分获取输入 c是整数,所以不能用字符串的方法 那么就想到用余数的方法 a,b=map(int,input().split(" ")) c=a+b d=str(c) print(d[...
Python3
input多输入
字符串输出
2022-01-18
0
268
首页
上一页
1
2
3
4
5
6
下一页
末页