UrbanPro
true

Learn Python Training from the Best Tutors

  • Affordable fees
  • 1-1 or Group class
  • Flexible Timings
  • Verified Tutors

Search in

A python program using the datetime module

Ashish K Sharma
11/11/2022 0 0

Task : To write a program in Python to find out, in any given year, Friday the 13th dates i.e 13th day of a month which was a Friday.

 

                                                                  SOLUTION

To perform this task, we need to first understand how Python handles dates and times. It does so by a built-in module called datetime. datetime helps us in various ways like:

                   A) It helps us to identify and process time-related elements like dates, hours, minutes,                                 seconds, days of the week, months, years, etc.

                   B) It offers various services like managing time zones and daylight savings time.

                    C) It can work with timestamp data.

                     D) Also,it can extract the day of the week, day of the month, and other date and time                                  formats from strings.

 

There are five main object classes associated with this module viz 

  • datetime – It enables us to manipulate times and dates together (month, day, year, hour,         second, microsecond).
  • date – Enables us to manipulate dates independent of time (month, day, year).
  • time – Enables us to manipulate time independent of date (hour, minute, second, microsecond).
  • timedelta— A duration of time used for manipulating dates and measuring.
  • tzinfo— An abstract class for dealing with time zones.

Depending on the type of task we wish to perform, we make use of these classes as and when required.

Thus,to handle anything related to date and time in Python,datetime is our module of choice.

Now, we will see how to use it in programs!

 

 

 Now, in order to perform the given task, we need,from any date,the following item:

  1. weekday using a function of the datetime class.

And, given that we already have the year and month information, we have to just combine these pieces of information to find out what we seek. But, first, in order to start using the date time object, we need to import its datetime class. So, now, we will look at the program to see how exactly  the task is performed:

 

from datetime import datetime    ## import datetime class from datetime module

monthlist = ['Jan','Feb','Mar','Apr','May','Jun','July','Aug','Sept','Oct','Nov','Dec']  ##List of months

year = input("Enter Year-->")   ## Year is inputted

for i in range(len(monthlist)):  ## This loop provides the month and the days of that month

        mah = monthlist[i]

    if (monthlist[i] == 'Jan'):

        mnthnum = 1

        daynum = 31

 

    if (monthlist[i] == 'Feb'):

        mnthnum = 2

        daynum = 28

 

    if (monthlist[i] == 'Mar'):

        mnthnum = 3

        daynum = 31

 

    if (monthlist[i] == 'Apr'):

        mnthnum = 4

        daynum = 30

 

    if (monthlist[i] == 'May'):

        mnthnum = 5

        daynum = 31

 

    if (monthlist[i] == 'Jun'):

        mnthnum = 6

        daynum = 30

 

    if (monthlist[i] == 'July'):

        mnthnum = 7

        daynum = 31

 

    if (monthlist[i] == 'Aug'):

        mnthnum = 8

        daynum = 31

 

    if (monthlist[i] == 'Sept'):

        mnthnum = 9

        daynum = 30

 

    if (monthlist[i] == 'Oct'):

        mnthnum = 10

        daynum = 31

 

    if (monthlist[i] == 'Nov'):

        mnthnum = 11

        daynum = 30

 

    if (monthlist[i] == 'Dec'):

        mnthnum = 12

        daynum = 31   

       

 

    for j in range(daynum):  ## This loop provides each and every day of a given month

          ## Create a date string from the year, month and day information

         dstr = str(year)+"-"+str(mnthnum)+"-"+str(j+1)  

    

        

         ##strptime function converts a date string to a date object. 

         ## strptime() takes two arguments: the date string(dstr) and the string "%Y-%m-%d"

         ## , an another string that tells strptime() how to interpret the input string dstr.

         my_date = datetime. strptime(dstr,"%Y-%m-%d")

         ##The weekday() function extracts the day of the week from the date

         wkday = my_date.weekday()

         ## Check for Friday,the 13th date in the given month

         if (wkday == 4) and ((j+1) == 13):

            print "Friday, the13th falls on”, dstr

    

 

 

                                                                  OUTPUT:

                                                                Enter Year-->2010

                                                                Friday, the13th falls on 2010-8-13

                                                                >>>

0 Dislike
Follow 1

Please Enter a comment

Submit

Other Lessons for You

DBMS - SQL - Any/All
All - Operator SELECT empno, sal FROM emp WHERE sal > ALL (1999, 2999, 3999); Output of Above query is same as below query SELECT empno, sal FROM emp WHERE sal > 1999 AND sal > 2999...
R

Radhe Shyam

0 0
0

Personalise touch of training & learning
We all are in countinous learning phase in life. Day to day we are learning new things,new language words,new faces,new gazets by all means of modes like reading books,newspapers,watching TV,movies,meeting...
S

Smartnub Softsolutions

0 0
0

Top Programming Languages 2017: Every Beginner Should Learn
Every year a plethora of job opportunities are being created for skilled programmers. So if you are thinking of honing your coding skills it is really a bright idea. But with so many programming languages...

Be A Python Dev
Currently, in the programming world, Python is one of the languages with a high rising demand profile. And this article will explain why that isn’t slowing down in the foreseeable future.Python...

Different types of data in python3
Python3 features Numbers(int,float,complex), String, Lists, Tuples, Dictionary and Sets type of data. long interger type numbers from python2 is no longer required. Below are examples of all python3 data...

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more