Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save santhalakshminarayana/b9d21c485f6e02fa3929f5a5bade3b32 to your computer and use it in GitHub Desktop.
Save santhalakshminarayana/b9d21c485f6e02fa3929f5a5bade3b32 to your computer and use it in GitHub Desktop.
Indian Name Generator - Reading - Medium
import pandas as pd
import numpy as np
names_df = pd.read_csv('Indian Names.txt',error_bad_lines=False)
names_df = names_df.drop_duplicates(keep='first').reset_index(drop=True)
names_df = np.squeeze(names_df).values.tolist()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment