Use random.choice instead of random.randint

random.choice is better for selecting random elements from a list than using random.randint to generate random indices to select
This commit is contained in:
uttamo 2017-09-28 01:02:29 +01:00 committed by GitHub
parent 8eb073544a
commit 5b745282a9
1 changed files with 3 additions and 8 deletions

View File

@ -1,4 +1,4 @@
from random import randint
from random import choice
def random_name_generator(first, second, x):
@ -10,13 +10,8 @@ def random_name_generator(first, second, x):
- number of random names
"""
names = []
for i in range(0, int(x)):
random_first = randint(0, len(first)-1)
random_last = randint(0, len(second)-1)
names.append("{0} {1}".format(
first[random_first],
second[random_last])
)
for i in range(x):
names.append("{0} {1}".format(choice(first), choice(second)))
return set(names)