when coding a very long list in python, is it better to fit several items on each line or should I limit it to 1 per line? 99% of the time I would go with style2 below but I have 5 lists each about the same length as the one below and it seems like too many lines. any advice would be appreciated.
for example:
style1 = [
'Email:', 'SSN:', 'Address:', 'Home Phone:',
'Mobile Phone: ', 'DOB:', 'Date of Surgery:',
'Date of Service:', 'Facility of Service:', 'Clinic Number:',
'Employer:', 'Work Phone: ', 'Fax: ', 'Type:', 'IPA:',
'Health Plan:', 'ID #:', 'Claims Address:', 'Group #:',
'Claim # / PO #:', 'Phone:', 'Fax:', 'Contact',
'Adjuster Email', 'Util Review Phone', 'Util Review Fax',
'Doctor:', 'NPI #: ', 'Date of Injury: ', 'Body Parts:',
'Body Part Side:', 'Gender:', 'Diagnosis:', 'Diagnosis 2:',
'Procedure:'
]
style2 = [
'Email:',
'SSN:',
'Address:',
'Home Phone:',
'Mobile Phone: ',
'DOB:',
'Date of Surgery:',
'Date of Service:',
'Facility of Service:',
'Clinic Number:',
'Employer:',
'Work Phone: ',
'Fax: ',
'Type:',
'IPA:',
'Health Plan:',
'ID #:',
'Claims Address:',
'Group #:',
'Claim # / PO #:',
'Phone:',
'Fax:',
'Contact',
'Adjuster Email',
'Util Review Phone',
'Util Review Fax',
'Doctor:',
'NPI #: ',
'Date of Injury: ',
'Body Parts:',
'Body Part Side:',
'Gender:',
'Diagnosis:',
'Diagnosis 2:',
'Procedure:'
]