I have a list that I would like to use information from in the naming of an Object. for example:
print this_device # ex. output ['dev879:', 'drain', '7.474', '11.163', '18.637']
What I would like to do it use this_device[0]
to be the name of the next variable to use to create an object.
For example:
print this_device # ex. ['dev879:', 'drain', '7.474', '11.163', '18.637']
Drive_DeviceName_ = this_device[0] # which is 'dev879'
Drivedev879 = ReadableDevice(this_device[0], this_device[1], this_device[2])
Please let me know if this makes sense.