List every line from a file containing specific numbers #6
Labels
No Label
test-request
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: retoor/l33t#6
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
List every line from /tmp/financial-data.csv were an amount > 999 is mentioned.
The amounts in the text file will have this notation: 1.999,- and so on. Idea is that grep with regex will be used or smth. But everything is allowed, so if he writes a complete python script and does smth like "[line for line in lines if "." in line and "," in line] is also allowed.