using Python3.5 i have two lists of strings, and i want to 'multiply' the two lists so i can do an ebay search for carparts, and print to the console.
cars = ['ford focus', 'honda civic', 'chevy truck',]
parts = ['ignition', 'head light']
for car in cars:
for part in parts:
print(cars[car]) + parts[part])
expected output:
>>>ford focus ignition
ford focus head light
honda civic ignition
honda civic head light
chevy truck ignition
chevy truck head light
Ive tried several different methods, but cant seem to get anything to give me the output i need. i attempted to use numpy, but couldnt figure out how to get it to install. "pip install numpy" at cmd kept giving me some sort of error that i couldnt figure out. i need the output to be both strings on the same line, because i will copy and paste them into a notepad document and utilize the data by the line for an ebay search.