letters
letters()
Get the 26 lowercased letters as a list
Returns
Name | Type | Description |
---|---|---|
List[str] | a list of all the 26 lowercased ASCII letters |
See Also
LETTERS : Get the 26 uppercased ASCII letters as a list
Examples
>>> from rlike import *
>>> letters()
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'] [