I'm trying to create a tool to ask for user input (text), then add predefined text (an array of 10 words) to the beginning of that input then pass the concatenated 10 values through a command.
This is where I was going with it but I don't know where to go from here:
variable1 = input('Enter XX')
variable2 = array('dog', 'cat', 'dog2', 'cat2', 'dog3', 'cat3', 'dog4', 'cat4', 'dog5', 'cat5')
Once I have all ten of the values (maybe a third variable, an array?) I was going to use a for loop to run each of them through a command. How do I go about creating a variable (or something else) that contains all 10 of concatenated values?