Step1: import string to your code.
> import string
Step2: create alphabet list with uppercase and lowercase.
> small_letter = string.ascii_lowercase
Step3: store it...
> lowerletter_list = list(small_letter)
Finish, You can run to see the result.
Top comments (0)