I am making a Python script that converts real-life dates into dates for a fantasy world.
However, I cannot represent years smaller than 1 or bigger than 9999 using the datetime
module, and they may occasionally appear. Is there any way to represent these dates in Python?
I tried using the datetime
module but it doesn't support years smaller than 1 or bigger than 9999.