Python timedelta Explained

UpComing SoftWare Training Demos

πŸš€ *Gen AI EngineerΒ Telugu (Production Focused)*
πŸ—“οΈ *Date:* 30th Sept 2026, 07:00AM IST
πŸ“ *Register Now!:*
https://www.vlrt.in/gr
πŸ‘₯ *Join WA Community:*
https://www.vlrt.in/gw
πŸ’‘*Course Content:*
https://www.vlrt.in/ai
▢️ *Demo Videos:*
https://www.vlrt.in/gv

πŸš€ *Service now Admin/ Development (ITSM)FREE Demo in Telugu*
πŸ—“οΈ *Date:* 30th Sept 2026, 08:00AM IST
πŸ“ *Register Now!:*
https://www.vlrt.in/7r
πŸ‘₯ *Join WA Community:*
https://www.vlrt.in/7w
πŸ’‘*Course Content:*
https://www.vlrt.in/7c
▢️ *Demo Videos:*
https://www.vlrt.in/7v

πŸš€ *Vulnerability Management Training Demo*
πŸ—“οΈ *Date:* 30th Sept 2026, 09:00 AM IST
πŸ“*Register Now!:*
https://www.vlrt.in/vr
πŸ‘₯ *Join Community:*
https://www.vlrt.in/cw
πŸ’‘ *Course Content:*
https://www.vlrt.in/vc
▢️ *Demo Videos:*
https://www.vlrt.in/Vm

Python timedelta Explained

timedelta is a class in Python’s datetime module that represents a duration – the difference between two dates or times. It’s incredibly useful for date and time arithmetic.

Importing timedelta

python

from datetime import timedelta, datetime, date

Basic Syntax

python

timedelta(days=0, seconds=0, microseconds=0, milliseconds=0, minutes=0, hours=0, weeks=0)

Examples

1. Basic timedelta Creation

python

from datetime import timedelta

# Different ways to create timedelta objects
td1 = timedelta(days=5)
td2 = timedelta(hours=3, minutes=30)
td3 = timedelta(weeks=2)
td4 = timedelta(days=1, hours=12, minutes=45, seconds=30)

print(f"5 days: {td1}")
print(f"3.5 hours: {td2}")
print(f"2 weeks: {td3}")
print(f"1 day, 12:45:30: {td4}")

Output:

text

5 days: 5 days, 0:00:00
3.5 hours: 3:30:00
2 weeks: 14 days, 0:00:00
1 day, 12:45:30: 1 day, 12:45:30

2. Date Arithmetic with timedelta

python

from datetime import datetime, date, timedelta

# Current date and time
now = datetime.now()
today = date.today()

print(f"Current datetime: {now}")
print(f"Current date: {today}")

# Add 10 days
future_date = today + timedelta(days=10)
past_date = today - timedelta(days=5)

print(f"10 days from now: {future_date}")
print(f"5 days ago: {past_date}")

# Add hours and minutes
future_time = now + timedelta(hours=3, minutes=15)
print(f"3 hours 15 minutes from now: {future_time}")

3. Time Difference Calculation

python

from datetime import datetime, timedelta

# Calculate difference between two dates
date1 = datetime(2024, 1, 15)
date2 = datetime(2024, 2, 20)
difference = date2 - date1

print(f"Date 1: {date1}")
print(f"Date 2: {date2}")
print(f"Difference: {difference}")
print(f"Days: {difference.days}")
print(f"Total seconds: {difference.total_seconds()}")

# Working with time differences
time1 = datetime(2024, 1, 1, 10, 30, 0)
time2 = datetime(2024, 1, 1, 14, 45, 30)
time_diff = time2 - time1

print(f"\nTime difference: {time_diff}")
print(f"Hours: {time_diff.total_seconds() / 3600}")

4. Practical Examples

python

from datetime import datetime, timedelta

# Calculate due dates
current_date = datetime.now()
due_in_30_days = current_date + timedelta(days=30)
print(f"Due date: {due_in_30_days.strftime('%Y-%m-%d')}")

# Calculate age in days
birth_date = datetime(1990, 5, 15)
today = datetime.now()
age_in_days = (today - birth_date).days
print(f"Age in days: {age_in_days}")

# Business logic: Free trial period
signup_date = datetime(2024, 1, 1)
trial_period = timedelta(days=14)
trial_end = signup_date + trial_period
days_remaining = (trial_end - today).days

print(f"Trial ends: {trial_end.strftime('%Y-%m-%d')}")
print(f"Days remaining: {days_remaining}")

5. Working with timedelta Attributes

python

from datetime import timedelta

# Create a complex timedelta
td = timedelta(days=2, hours=5, minutes=30, seconds=45)

print(f"Total timedelta: {td}")
print(f"Days: {td.days}")
print(f"Seconds: {td.seconds}")  # seconds within a day (0-86399)
print(f"Microseconds: {td.microseconds}")
print(f"Total seconds: {td.total_seconds()}")

# Access individual components
total_seconds = td.total_seconds()
hours = total_seconds // 3600
minutes = (total_seconds % 3600) // 60
seconds = total_seconds % 60

print(f"Breakdown: {int(hours)} hours, {int(minutes)} minutes, {int(seconds)} seconds")

6. Comparing timedelta Objects

python

from datetime import timedelta

td1 = timedelta(days=1)
td2 = timedelta(hours=24)
td3 = timedelta(days=2)

print(f"td1 == td2: {td1 == td2}")  # True
print(f"td1 < td3: {td1 < td3}")    # True
print(f"td3 > td2: {td3 > td2}")    # True

# Using in conditions
if td1 < td3:
    print("td1 is shorter than td3")

7. Real-world Application: Task Scheduler

python

from datetime import datetime, timedelta

class TaskScheduler:
    def __init__(self):
        self.tasks = []
    
    def add_task(self, name, duration_days=0, duration_hours=0):
        start_time = datetime.now()
        duration = timedelta(days=duration_days, hours=duration_hours)
        end_time = start_time + duration
        
        task = {
            'name': name,
            'start': start_time,
            'duration': duration,
            'end': end_time
        }
        self.tasks.append(task)
        return task
    
    def show_tasks(self):
        for task in self.tasks:
            print(f"Task: {task['name']}")
            print(f"  Starts: {task['start'].strftime('%Y-%m-%d %H:%M')}")
            print(f"  Duration: {task['duration']}")
            print(f"  Ends: {task['end'].strftime('%Y-%m-%d %H:%M')}")
            print()

# Usage
scheduler = TaskScheduler()
scheduler.add_task("Project Planning", duration_days=3)
scheduler.add_task("Code Review", duration_hours=4)
scheduler.add_task("Testing", duration_days=2, duration_hours=6)

scheduler.show_tasks()

Key Points to Remember

  1. Immutable: timedelta objects are immutable
  2. Normalization: Components are automatically normalized (e.g., 70 seconds becomes 1 minute 10 seconds)
  3. Negative values: Can represent negative durations
  4. Precision: Supports days, seconds, and microseconds
  5. Comparable: Can be compared using standard comparison operators

timedelta is essential for any application that involves date and time calculations, making it easy to perform operations like adding/subtracting time intervals, calculating durations, and scheduling future events.

Similar Posts

  • reΒ module

    The re module is Python’s built-in module for regular expressions (regex). It provides functions and methods to work with strings using pattern matching, allowing you to search, extract, replace, and split text based on complex patterns. Key Functions in the re Module 1. Searching and Matching python import re text = “The quick brown fox jumps over the lazy dog” # re.search()…

  • Variable Length Positional Arguments in Python

    Variable Length Positional Arguments in Python Variable length positional arguments allow a function to accept any number of positional arguments. This is done using the *args syntax. Syntax python def function_name(*args): # function body # args becomes a tuple containing all positional arguments Simple Examples Example 1: Basic *args python def print_numbers(*args): print(“Numbers received:”, args) print(“Type of…

  • String Validation Methods

    Complete List of Python String Validation Methods Python provides several built-in string methods to check if a string meets certain criteria. These methods return True or False and are useful for input validation, data cleaning, and text processing. 1. Case Checking Methods Method Description Example isupper() Checks if all characters are uppercase “HELLO”.isupper() β†’ True islower() Checks if all…

  • AttributeError: ‘NoneType’ Error in Python re

    AttributeError: ‘NoneType’ Error in Python re This error occurs when you try to call match object methods on None instead of an actual match object. It’s one of the most common errors when working with Python’s regex module. Why This Happens: The re.search(), re.match(), and re.fullmatch() functions return: When you try to call methods like .group(), .start(), or .span() on None, you get this error. Example That Causes…

  • Quantifiers (Repetition)

    Quantifiers (Repetition) in Python Regular Expressions – Detailed Explanation Basic Quantifiers 1. * – 0 or more occurrences (Greedy) Description: Matches the preceding element zero or more times Example 1: Match zero or more digits python import re text = “123 4567 89″ result = re.findall(r’\d*’, text) print(result) # [‘123’, ”, ‘4567’, ”, ’89’, ”] # Matches…

  • Alternation and Grouping

    Complete List of Alternation and Grouping in Python Regular Expressions Grouping Constructs Capturing Groups Pattern Description Example (…) Capturing group (abc) (?P<name>…) Named capturing group (?P<word>\w+) \1, \2, etc. Backreferences to groups (a)\1 matches “aa” (?P=name) Named backreference (?P<word>\w+) (?P=word) Non-Capturing Groups Pattern Description Example (?:…) Non-capturing group (?:abc)+ (?i:…) Case-insensitive group (?i:hello) (?s:…) DOTALL group (. matches…

Leave a Reply

Your email address will not be published. Required fields are marked *