Sep-03-2017, 04:39 PM
So, I'm using this bot which makes accounts (Some people might know what it's for), and this is the part of the script that I need to edit.
def get_random_name(): return "{}{}{}".format(fake.first_name(), fake.last_name(), random.randint(200, 900) + random.randint(55, 4444444) )Meaning it makes a name consisting of a first name, last name, and numbers. And those first and last names are taken from a list of names. I was wondering if there's any way to edit what names will be as first and last, I know I can edit the "{}{}{}" to make the first name always be a specific name, but I'd like for it to be chosen from a list i've made myself. If anybody could help me with this issue I'd appreciate it.