Python DateTime - time.replace() Method with Example Last Updated : 23 Aug, 2021 Comments Improve Suggest changes Like Article Like Report In this article, we will discuss the time.replace() method in Python. This method is used to manipulate objects of time class of module datetime. It is used to replace the time with the same value, except for those parameters given new values by whichever keyword arguments. Syntax: replace(year=self.year, month=self.month, day=self.day) Parameters: Year: New year value (range: 1 <= year <= 9999)month: New month value(range: 1 <= month <= 12)day: New day value(range: 1<= day <= 31) Returns: New datetime object. Python program to get time and display: Python3 # import time from datetime from datetime import time # create time x = time(5,34,7,6789) print("Time:", x) Output: Time: 05:34:07.006789Example 1: Python program to replace hour from the given time Python3 # import time from datetime from datetime import time # create time x = time(5, 34, 7, 6789) print("Actual Time:", x) # replace hour from 5 to 10 final = x.replace(hour = 10) print("New time after changing the hour:", final) Output: Actual Time: 05:34:07.006789 New time after changing the hour: 10:34:07.006789Example 2: Python program to replace minute from time Python3 # import time from datetime from datetime import time # create time x = time(5, 34, 7, 6789) print("Actual Time:", x) # replace minute from 34 to 12 final = x.replace(minute = 12) print("New time after changing the minute:", final) Output: Actual Time: 05:34:07.006789 New time after changing the minute: 05:12:07.006789Example 3: Python code to replace seconds Python3 # import time from datetime from datetime import time # create time x = time(5,34,7,6789) print("Actual Time:", x) # replace second from 7 to 2 final = x.replace(second = 2) print("New time after changing the second:", final) Output: Actual Time: 05:34:07.006789 New time after changing the second: 05:34:02.006789Example 4: Python program to replace all at a time Python3 # import time from datetime from datetime import time # create time x = time(5,34,7,6789) print("Actual Time:", x) # replace hour from 5 to 10 # replace minute from 34 to 11 # replace second from 7 to 1 # replace milli second from 6789 to 1234 final = x.replace(hour = 10, minute = 11, second = 1, microsecond = 1234) print("New time :", final) Output: Actual Time: 05:34:07.006789 New time : 10:11:01.001234 Comment More infoAdvertise with us Next Article Interview Preparation For Software Developers S sravankumar_171fa07058 Follow Improve Article Tags : Python Python-datetime Practice Tags : python Similar Reads Interview PreparationInterview Preparation For Software DevelopersMust Coding Questions - Company-wise Must Do Coding Questions - Topic-wiseCompany-wise Practice ProblemsCompany PreparationCompetitive ProgrammingSoftware Design-PatternsCompany-wise Interview ExperienceExperienced - Interview ExperiencesInternship - Interview ExperiencesPractice @GeeksforgeeksProblem of the DayTopic-wise PracticeDifficulty Level - SchoolDifficulty Level - BasicDifficulty Level - EasyDifficulty Level - MediumDifficulty Level - HardLeaderboard !!Explore More...Data StructuresArraysLinked ListStackQueueBinary TreeBinary Search TreeHeapHashingGraphAdvance Data StructuresMatrixStringAll Data StructuresAlgorithmsAnalysis of AlgorithmsSearching AlgorithmsSorting AlgorithmsPattern SearchingGeometric AlgorithmsMathematical AlgorithmsRandomized AlgorithmsGreedy AlgorithmsDynamic ProgrammingDivide & ConquerBacktrackingBranch & BoundAll AlgorithmsProgramming LanguagesCC++JavaPythonC#Go LangSQLPHPScalaPerlKotlinWeb TechnologiesHTMLCSSJavaScriptBootstrapTailwind CSSAngularJSReactJSjQueryNodeJSPHPWeb DesignWeb BrowserFile FormatsComputer Science SubjectsOperating SystemsDBMSComputer NetworkComputer Organization & ArchitectureTOCCompiler DesignDigital Elec. & Logic DesignSoftware EngineeringEngineering MathematicsData Science & MLComplete Data Science CourseData Science TutorialMachine Learning TutorialDeep Learning TutorialNLP TutorialMachine Learning ProjectsData Analysis TutorialTutorial LibraryPython TutorialDjango TutorialPandas TutorialKivy TutorialTkinter TutorialOpenCV TutorialSelenium TutorialGATE CSGATE CS NotesGate CornerPrevious Year GATE PapersLast Minute Notes (LMNs)Important Topic For GATE CSGATE CoursePrevious Year Paper: CS exams Like