0

我对 python 很陌生,我试图计算二维数组中有多少 x,但 list.count(x) 给了我 0,但我知道它不是零。

我展示了我所有的代码。这段代码应该做:从文件中读取名称和年龄,获取最大和最小年龄,并在其他文件中打印所有具有相同最大和最小年龄的文件。

with open("duomenys.txt") as d: 
   sar = [line.split() for line in d]
max = 0
min = 200

for index, item in enumerate(sar):
    if int(sar[index][1]) > max:
        max = int(sar[index][1])
        pozmax = index

for index, item in enumerate(sar):
    if int(sar[index][1]) < min:
        min = int(sar[index][1])
        pozmin = index

with open('vyr_jaun.txt', 'w') as d: 
    d.write (sar[pozmin][0]+' '+sar[pozmin][1]+'\n')
with open('vyr_jaun.txt', 'a') as d: 
    d.write (sar[pozmax][0]+' '+sar[pozmax][1])

这只会在文件中写入一个姓名和年龄

我的 duomneys.txt 文件:

Justas 23
Mantas 18
Rokas 33
Anzelmute 69
Ruta 11
Vilius 2
Monika 6
Petras 17
Stasys 26
Zose 13
Jurgis 2
Borisas 69
4

1 回答 1

0

(请注意,您在数组中的年龄是字符串。这不是问题。)

what = str(9) # whatever you are searching for
count = 0
for name,age in array:
    if age == what:
        count += 1

print("there are",count,"people with the age",what)
于 2012-10-03T09:08:08.780 回答