DEV Community

Cover image for A happy new year to everyone in Python!
Everton Tenorio
Everton Tenorio

Posted on

A happy new year to everyone in Python!

Hello devs, may we continue to grow in our tasks and studies throughout 2025. This year, I've learned a lot here on dev.to, so, following the community's premise, Iā€™m sharing a Python code snippet for those already counting down the hours to the new year.

from datetime import datetime, timedelta

today = datetime.now()
date_format = "%m/%d/%Y"

if today.strftime(date_format) == "12/31/2024":
    print(today.strftime("%H:%M:%S"))
else:
    new_year = today + timedelta(days=1)
    print(f"It's {new_year.strftime('%m/%d/%Y')}. HAPPY NEW YEAR!")
Enter fullscreen mode Exit fullscreen mode

The datetime module is part of Python's standard library and provides classes for manipulating dates and times, such as the datetime class. The timedelta class represents a time difference (duration), like "2 days," "5 hours," or "30 minutes." It is used for operations like adding or subtracting durations from a date/time object. The code checks whether we are on the last day of 2024, and if not...

It's 01/01/2025. HAPPY NEW YEAR! šŸŽ‡ šŸ„‚šŸ¾

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

AWS Security LIVE!

Hosted by security experts, AWS Security LIVE! showcases AWS Partners tackling real-world security challenges. Join live and get your security questions answered.

Tune in to the full event

DEV is partnering to bring live events to the community. Join us or dismiss this billboard if you're not interested. ā¤ļø