Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
So I'm using this bot
#1
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.
Reply
#2
(Sep-03-2017, 04:39 PM)Walrus_Emperor Wrote: 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.

From what I understand from your question is that you already have a list of the first and last name and you want to randomly choose from it.For that you can use random.choice() to select randomly.

eg-
>>> f = ['a','b','c','d']
>>> l = ['w','x','y','z']
>>> first = random.choice(f)
>>> last = random.choice(l)
>>> print('f: {} l: {}'.format(first,last))
f: c l: w
Reply
#3
(Sep-03-2017, 04:52 PM)hbknjr Wrote:
(Sep-03-2017, 04:39 PM)Walrus_Emperor Wrote: 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.

From what I understand from your question is that you already have a list of the first and last name and you want to randomly choose from it.For that you can use random.choice() to select randomly.

eg-
>>> f = ['a','b','c','d']
>>> l = ['w','x','y','z']
>>> first = random.choice(f)
>>> last = random.choice(l)
>>> print('f: {} l: {}'.format(first,last))
f: c l: w

Alright, so I changed it to
 f = ['test', 'test2']
d = ['test3', 'test4']
	
def get_random_name():
    return "{}{}{}".format(random.choice(f), random.choice(d), random.randint(200, 900) + random.randint(55, 4444444) )
and it works fine, thanks for the help.
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020