quando si codifica un elenco molto lungo in python, è meglio adattare diversi elementi su ogni riga o dovrei limitarlo a 1 per riga? Il 99% delle volte andrei con style2 sotto, ma ho 5 liste ciascuna circa della stessa lunghezza di quella qui sotto e sembra troppe righe. Tutto il consiglio sarebbe apprezzato.
ad esempio:
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:'
]