Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 269 Bytes

DEVELOPMENT.md

File metadata and controls

12 lines (9 loc) · 269 Bytes

Developer tricks

Deduplicate the terms for word selection.

import pandas as pd

df = pd. \
    read_csv("word_selection.txt", header=None). \
    drop_duplicates().reset_index(drop=True). \
    to_csv("word_selection.txt", index=False, header=False)