Skip to content

Instantly share code, notes, and snippets.

@Zoldin
Created November 18, 2019 09:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Zoldin/698b8e375ce061e674909e8e0f89d179 to your computer and use it in GitHub Desktop.
Save Zoldin/698b8e375ce061e674909e8e0f89d179 to your computer and use it in GitHub Desktop.
import random
import pandas as pd
clients = pd.DataFrame()
clients['client_id'] = [0,1,2,3,4,5,6,7,8,9]
clients['client_name'] = ["Mobili Ltd.","Tymy Ltd.", "Lukas Ltd.","Brod Ltd.",
"Missyda Ltd.", "Abiti Ltd.", "Bomy Ltd." , "Citiwi Ltd.", "Dolphy Ltd.", "Doper Ltd."]
random.choices(clients['client_name'],k=2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment