Say I've written a function that will take an unlimited number of arguments and store them under different variables.
Since the use is able to input any number of strings, it's not possible to give names to all the variables that might be created.
So, how would I create variables when the program is running ? I would like to create variables that have progressive names like.. (for the example above), string_one, string_two, string_three.. or string1, string2 , string3
EDIT: Just did some googling... Could I use dictionaries?