How To List Certifications On Resume

Ok, so I'm applying to grad schools right now and I need to update/rework my resume before I submit it on the application. My question is, how do I list two of the certs I hold? They're both GIAC ...

AOL: 15 Free Online Certifications That Can Launch Your Resume Ahead of Other Applicants

how to list certifications on resume 2

15 Free Online Certifications That Can Launch Your Resume Ahead of Other Applicants

Forbes: 3 Microsoft Certifications To Put On Your Resume For $160,000+ Jobs

Stop listing “Microsoft Office” or “Excel” on your resume. Unless the job listing specifically calls for it (and if it does then that’s a red flag because the employer is clearly way behind these ...

how to list certifications on resume 5

By using a : colon in the list index, you are asking for a slice, which is always another list. In Python you can assign values to both an individual item in a list, and to a slice of the list.

What is the difference between list [1] and list [1:] in Python?

The second, list(), is using the actual list type constructor to create a new list which has contents equal to the first list. (I didn't use it in the first example because you were overwriting that name in your code - which is a good example of why you don't want to do that!)

how to list certifications on resume 8

When reading, list is a reference to the original list, and list[:] shallow-copies the list. When assigning, list (re)binds the name and list[:] slice-assigns, replacing what was previously in the list. Also, don't use list as a name since it shadows the built-in.

how to list certifications on resume 9