Alphabets Module by Aditya Shrivastava | FULL DOCUMENTATION
Alphabets Module is a module which will help you whenever you need a alphabet in form of list or one-liner strings.
Made By Aditya Shrivastava
Written in Python 3.8.0
INSTALLATION:
This module is available at PyPi. Install Using pip
pip install alphabets
DOCUMENTAION:
*Tip - After Importing The Module, Use help(alphabets) to access the in-module documentation
alphabets.small() = Returns a list of alphabets in small
['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']
alphabets.smallOneLine = Returns small alphabets in single line
"abcdefghijklmnopqrstuvwxyz"
alphabets.capital() = Returns a list of alphabets in CAPITAL
['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']
alphabets.capitalOneLine = Returns capital alphabets in single line
'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
alphabets.vowels() = Returns small vowels in list
['a','e','i','o','u']
alphabets.vowelsOneLine() = Return small vowels in oneline
'aeiou'
alphabets.vowelsCapital = Returns capital vowels in list
['A','E','I','O','U']
alphabets.vowelsCapitalOneLine = Returns capital vowels in single line
'AEIOU'
Comments
Post a Comment