storage = []
…
after running program
storage = [ <main.Record instance at 0x032E8530> ]
inside the instance of Record are:
“Model No.”
“Standard: Part Number”
“Standard: Issue Date”
“Date of Declaration”
“Declaration Document Number”
Question: How do I use specific data from within the Record?
What do you mean by use?
storage[0]will give you a reference to the record.From there you can just use whatever methods
main.Recordexposes to access its data.