- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 9735 Articles for Python

Updated on 07-Sep-2022 07:02:26
In this article, we convert the pandas offset to date in python. When you subtract the pandas from a date object, you get a pandas Timestamp object. You can convert this object to a String format date or Date object(Standard Python date). Or you can use the timedelta object from the datetime library. Example 1 In the following example code, we remove the offset of 10 days using to_offset(“10D”) from the pandas pd.to_datetime(‘2018-01-04’). from pandas.tseries.frequencies import to_offset import pandas as pd dt = pd.to_datetime('2018-01-04') - to_offset("10D") print(type(dt)) print(dt) Output The output of the above code is as follows. ... Read More 
Updated on 05-Sep-2022 10:22:28
In this article, we will understand how to compare python dates. They are different methods to identify which date is greater or lesser and these methods will be explored in detail. Using the timedelta() method and operator In this method, we use the datetime module and operator to compare two dates. To alter date and time, the datatime module provides timedelta() method. The timedelta() method takes the number of days as an input and returns the date. This method is used to perform arithmetic manipulations. Syntax The syntax of the timedelta() method from the datetime module in python ... Read More 
Updated on 08-Sep-2022 06:51:06
In this article we convert a date string to a date object. We use the strptime() method to convert a date string to a date object. Strptime() The strptime() method takes the date as an input and converts it into a date object. Note that you cannot convert any string into a datetime object. The string should be in a certain format. Syntax The syntax of the strptime() method is shown in this section. datetime.strptime(time_data, format_data) Where, time_date – it is the time present in string format. format_date – it is the data(string) present in datetime format which is ... Read More 
Updated on 23-Nov-2022 09:41:05
Introduction It is essential to have a module that can modify date and time since, as we all know, they are utilized in applications where we must keep track of date and time. A DateTime module in Python deals with dates and times. Python comes with a built-in datetime module. Installation of two new libraries is necessary before any data modification may take place. Dates and timings are quickly retrieved using the arrow library. A DataFrame may be accessed and used thanks to the Pandas library. Go to an IDE console to install these libraries. Run the code ... Read More 
Updated on 19-Feb-2020 05:49:16
You can use the calender module to get the calender for a given month of a given year in Python. You need to provide the year and month as arguments. exampleimport calendar
y = 2017
m = 11
print(calendar.month(y, m))OutputThis will give the output − November 2017
Mo Tu We Th Fr Sa Su
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 
Updated on 22-Sep-2022 09:04:09
In this article, we will show you how to format date and time in python. The datetime module in Python offers methods for working with date and time values. To use this module, we must first import it using the following import keyword− import datetime strftime function() The strftime function returns a formatted date and time. It accepts a format string that you can use to get the result you want. The following are the directives that it supports. Directive Meaning %a Locale's abbreviated weekday name %B Locale's full month name. ... Read More 
Updated on 19-Feb-2020 05:41:03
You can get the current date and time using multiple ways. The easiest way is to use the datetime module. It has a function, now, that gives the current date and time. exampleimport datetime now = datetime.datetime.now() print("Current date and time: ") print(str(now))OutputThis will give the output −2017-12-29 11:24:48.042720You can also get the formatted date and time using strftime function. It accepts a format string that you can use to get your desired output. Following are the directives supported by it.Directive Meaning%a Locale's abbreviated weekday name.%A Locale's full weekday name.%b Locale's abbreviated month name. %BLocale's full month name. ... Read More 
Updated on 19-Feb-2020 05:28:39
The timetuple() method of datetime.date instances returns an object of type time.struct_time. The struct_time is a named tuple object (A named tuple object has attributes that can be accessed by an index or by name). exampleYou can print the complete time tuple by simply passing it to print.import datetime
todaysDate = datetime.date.today()
timeTuple = todaysDate.timetuple()
print(timeTuple)OutputThis will give the output −time.struct_time(tm_year=2017, tm_mon=12, tm_mday=28, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=3, tm_yday=362, tm_isdst=-1) 
Updated on 12-Jun-2020 06:32:00
To get the timer ticks at a given time, use the clock. The python docs state that this function should be used for benchmarking purposes. Exampleimport time t0= time.clock() print("Hello") t1 = time.clock() - t0 print("Time elapsed: ", t1 - t0) # CPU seconds elapsed (floating point)OutputThis will give the output −Time elapsed: 0.0009403145040156798Note that different systems will have different accuracy based on their internal clock setup (ticks per second). but it's generally at least under 20ms. Also note that clock returns different things on different platforms. On Unix, it returns the current processor time as a floating point number expressed ... Read More 
Updated on 19-Feb-2020 05:24:39
The floating-point numbers in units of seconds for time interval are indicated by Tick in python. Particular instants in time are expressed in seconds since 12:00am, January 1, 1970(epoch). You can use the time module to use functions for working with times, and for converting between representations. For example, if you want to print the current time in ticks, you'd write:Exampleimport time
ticks = time.time()
print("Ticks since 12:00am, January 1, 1970: ", ticks)OutputThis will give the output −Ticks since 12:00 am, January 1, 1970: 1514482031.2905385 Advertisements