Python: How To Generate a List Of Letters In The Alphabet

In today’s post I show you how to use three python built in functions to populate a list with letters of the alphabet. To achieve our goal we will the chr() and ord() built-in functions. I will also explain how to use the map() function to make your code look cleaner. To the code: Take …

Python: How To Generate a List Of Letters In The Alphabet Read More »