[Tex/LaTex] enumerate with Arabic numbers and right parentheses

#enumeratelists

Cannot really figure out how to create such a list:

1) List item

2) List item

3) List item

Here's what I have to use so far:

\begin{enumerate}
    \item[1)] List item
    \item[2)] List item
    \item[3)] List item
\end{enumerate}

Without these [1)]..[3)] dots appear instead of parentheses.

Best Answer

An example of how one can do things with enumitem: either with global settings or with optional arguments for each individual enumerate environments (these override the global settings):

        \documentclass[12pt, a4paper]{article}
        \usepackage[utf8]{inputenc}
        \usepackage[T1]{fontenc}
        \usepackage{lmodern}

        \usepackage[shortlabels]{enumitem}
                    \setlist[enumerate, 1]{1\textsuperscript{o}}

        \begin{document}

        \begin{enumerate}[1)]
            \item First item. 
            \item Second item
            \item A third item
         \end{enumerate}

         Global settings (defined in preamble for the 1\textsuperscript{st} level of enumeration): 
        \begin{enumerate}
            \item First item.
            \begin{enumerate}
              \item A first subitem
              \item A second subitem
            \end{enumerate}
            \item Second item
            \item A third item
         \end{enumerate}

        \end{document}

enter image description here