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

Popular posts from this blog

Compare The Tripets | HackerRank Problem Solved by Aditya Shrivastava

Simple List Sum | Given a List of integers, find the sum of its elements | Hackerrank