I'm using Jupyter Notebooks with python 3 kernel. I know how to make a numbered list, but how do I make a lettered list? For the numbered list I just type 1.
and then a space after. So to make a numbered list with three items, I would type
1. typing item one
1. typing item two
1. typing item three
and that would give me
- typing item one
- typing item two
- typing item three
So is there a similar way to get an output of
a. typing item one
b. typing item two
c. typing item three