1. 使用尽可能多的方法实现list去重
a=[1,2,3,4,1,2,3,4]
a=set(a)
print(list(a))
a=[1,2,3,4,1,2,3,4]
result=[]
for i in a:
if i not in result:
result.append(i)
print(result)
2. 成绩等级判断
利用条件运算符的嵌套来完成此题:学习成绩>=90分的同学用A表示,60-89分之间的用B表示,60分以下
的用C表示
score=float(input('请输入分数:'))
if score>=90:
print('A')
elif score>=60 and score<=89:
print('B')
else:
print('C')
3. 实现数学中多项式求和公式的打印
比如:a6x^6 + a5x^5 + a4x^4 + a3x^3 + a2x^2 + a1x^1 + a0
score=float(input('请输入分数:'))
if score>=90:
print('A')
elif score>=60 and score<=89:
print('B')
else:
print('C')
4. 统计名字列表中,各名字的首字母在名字列表中出现的次数
names = ["huhongqiang","zhangsan","lisi","wangwu","wuda","ziliao"]
result={}
for name in names:
for i in name[0]:
if i in result:
result[i]+=name[0].count(i)
else:
result[i]=name[0].count(i)
print(result)
5. 输入三个数,判断是否能构成三角形
能构成三角形三边关系:
三边都大于零
两边之和大于第三边,两边之差小于第三边
a=float(input('请输入第一条边:'))
b=float(input('请输入第二条边:'))
c=float(input('请输入第三条边:'))
if a>0 and b>0 and c>0:
if a+b>c and a+c>b and b+c>a:
if a-b<c and a-c<b and b-c<a:
print('可以构成三角形')
else:
print('不可以构成三角形')
else:
print('不可以构成三角形')
else:
print('不可以构成三角形')
转载请注明原文地址:https://ipadbbs.8miu.com/read-3137.html