Get sorted Months and Weeks by chronological order
Project description
sorted-months-weekdays
It sorts list of months or list of weekdays in a chronological order not in alphabetical order
The default python or pandas sort functions sort month names and weekdays in an alphabetical order. I checked a lot to find a function which sorts in chronological order but couldn't find one, so I created this simple package.
How to install
pip install sorted-months-weekdays
There are two main functions in this package Month_Sorted_Month Weekday_Sorted_Week
How to import
from sorted_months_weekdays import Month_Sorted_Month, Weekday_Sorted_Week
Example1
samplemonthnames1 = ['Apr','Jan','Dec','Mar','Oct'] samplemonthnames2 = ['December', 'January', 'June', 'March', 'September'] Month_Sorted_Month(samplemonthnames1) Result: ['Jan', 'Mar', 'Apr', 'Oct', 'Dec'] Month_Sorted_Month(samplemonthnames2) Result: ['January', 'March', 'June', 'September', 'December']
Example2
testweeknames1 = ['Tue','Thu','Mon','Sun'] testweeknames2 = ['Saturday','Tuesday','Friday','Monday'] Weekday_Sorted_Week(testweeknames1) Result: ['Mon', 'Tue', 'Thu', 'Sun'] Weekday_Sorted_Week(testweeknames2) Result: ['Monday', 'Tuesday', 'Friday', 'Saturday']
This function also handles lower and upper case and mixed case months and weekdays lists.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size sorted_months_weekdays-0.2.tar.gz (2.7 kB) | File type Source | Python version None | Upload date | Hashes View |
Close
Hashes for sorted_months_weekdays-0.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | da789b04ef3cbb24df8044cef14669b3f9a5ade729ad4f3be04cb36f7612d824 |
|
MD5 | 298ec233414dc68c67fc26aaed1a58f9 |
|
BLAKE2-256 | 8a96885ab16f3653bcf7a035b9dcf0089f2b5e26a2af76573fc458dcb51758fe |