Skip to content

Commit

Permalink
Filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
s2t2 committed Sep 11, 2024
1 parent 28c8448 commit a01f221
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/notes/data-processing/filtering.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ matching_nums = []
for n in my_numbers:
if n > 3: # FILTER CONDITION
#print(n)
matching_nums.append(n)
matching_nums.append(n) # COLLECT FOR LATER
print(matching_nums)
```
Expand Down

0 comments on commit a01f221

Please sign in to comment.