matt1972
Power Member
- Nov 19, 2009
- 503
- 206
I've got this..
Word_List = ['for', 'about', 'how']
I call that with this.. random.choice(Word_List)
What I want to do is something like this...
Word_List = ['for', 'about', 'how'] + ['house', 'car', 'tree']
and have it take one random from the first one and one random from the second one. How would I get that to work so my outputs would be something like this?
for car
how tree
about house
etc..
Word_List = ['for', 'about', 'how']
I call that with this.. random.choice(Word_List)
What I want to do is something like this...
Word_List = ['for', 'about', 'how'] + ['house', 'car', 'tree']
and have it take one random from the first one and one random from the second one. How would I get that to work so my outputs would be something like this?
for car
how tree
about house
etc..