- 第一题
n = eval(input('请输入正整数:'))
print('{:->20,}'.format(n))
********************************************
请输入正整数:1234
---------------1,234
- 第二题
b = list(eval(input('请输入正整数:')))
a = [3,6,9]
print(b)
s = 0
for i in range(3):
n = a[i]*b[i]
s += n
print(s)
******************************
请输入正整数:1,2,3
[1, 2, 3]
42
- 第三题 iage.png
import random
random.seed(123)
for i in range(10):
print(random.randint(1,1000),end=',')
********************************************************
54,275,90,788,418,273,111,859,923,896,
- 第四题
import turtle
turtle.right(30)
turtle.fd(200)
turtle.right(-60)
turtle.fd(200)
turtle.right(-120)
turtle.fd(200)
turtle.right(-60)
turtle.fd(200)
- 第五题
data = input('请输入姓名、性别、年龄,中间用空格隔开:')
n = 0
s = 0
i = 0
while data:
li = data.split()
if li[1]=='男':
n += 1
i += 1
s += int(li[2])
data = input('请输入姓名、性别、年龄,中间用空格隔开:')
ave = s/i
print('男生人数为{},平均年龄为{:.2f}岁'.format(n,ave))
****************************************************
请输入姓名、性别、年龄,中间用空格隔开:张三 男 23
请输入姓名、性别、年龄,中间用空格隔开:李四 女 21
请输入姓名、性别、年龄,中间用空格隔开:王五 男 18
请输入姓名、性别、年龄,中间用空格隔开:
男生人数为2,平均年龄为20.67岁
-
第六题
1.第一问
d = {}
with open(r'C:\Users\董贺贺\Desktop\命运.txt')as f:
tex = f.read()
for ch in ',。?!……':
tex = tex.replace(ch,'')
for ch in tex:
d[ch] = d.get(ch,0) + 1
ls = list(d.items())
ls.sort(key = lambda x:x[1],reverse=True)
a,b = ls[0]
print('{}:{}'.format(a,b))
- 第二问
d = {}
with open(r'C:\Users\董贺贺\Desktop\命运.txt')as f:
tex = f.read()
for ch in '\n':
tex.replace(ch,'')
for ch in tex:
d[ch] = d.get(ch,0) + 1
ls = list(d.items())
ls.sort(key=lambda x:x[1],reverse=True)
for i in range(10):
print(str(ls[i])[2],end='')
#列表中包含的一个个元祖转变为字符串‘(的:5)’那么str(ls[i])[2]就是的
- 第三问
d = {}
with open(r'C:\Users\董贺贺\Desktop\命运.txt')as f:
tex = f.read()
for ch in ' \n':
tex.replace(ch,'')
for ch in tex:
d[ch] = d.get(ch,0) + 1
ls = list(d.items())
ls.sort(key=lambda x:x[1],reverse=True)
string = ''
for i in range(len(ls)):
string += ('{}:{}'.format(str(ls[i])[2],str(ls[i])[6:-1])+',')
with open(r'C:\Users\董贺贺\Desktop\命运—频次排序.txt','w')as f1:
f1.write(string[:-1])
这题参考答案有问题 显然是错的,而且多次一笔
网友评论