
Python
0
Вклад в тег
with open('population_txt.rtf') as f:
for line in f:
n, p = line.split('\t')
if n.startswith('G') and int(p.strip().replace('\\','')) > 500000:
print(n)