Convert MJD UTC to python datetime or similar
23:34 24 Feb 2026

I have a list of strings representing time in python, where time is given as MJD in UTC. Some have one decimal point, for instance '60781.94298115968', and some have two, for instance '60781.94298115968.1'.

How can I convert this list of time strings to a python datetime or something similar? I've looked at similar questions but I can't seem to figure out how to convert it when there are two decimal points.

python datetime