sup = ['eyes', 'nose', 'mouth']
car = ['4wd', 'hatch', 'coupe']
tan = ['dark', 'light', 'pale']
objects = ['sup', 'car', 'tan']
import random
print 'choose 2 objects from the following list separated by commas:'
print 'sup, car, tan'
chorol []
chorol.extend (objects[:2])
from random import choice
print choice (1)
from random import choice
print choice (2)
I'm trying to get a user to pick 2 lists from a set of 3 and then print 1 random item from each of the 2 lists the user has chosen. I've only started learning to code very recently, so the mistake is probably very basic.