5 lines
133 B
Python
5 lines
133 B
Python
python -c '
|
|
with open("data.txt") as f:
|
|
for ln in f:
|
|
if float(ln.strip().split()[2]) > 6:
|
|
print(ln.strip())'
|