Skip to content

Instantly share code, notes, and snippets.

View Godwhitelight's full-sized avatar
🎯
Focusing

Godwhitelight Godwhitelight

🎯
Focusing
View GitHub Profile
@Godwhitelight
Godwhitelight / get_days.py
Created April 19, 2023 20:28
get days in a month in a year python
def get_days(month: int, year: int):
"""
Get the number of days in a month
:param month: The month
:param year: The year
:return: The number of days in the month
:Example:
>>> get_days(2, 2020)