Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions days_from_date.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import re # regular expressions
import calendar # module of python to provide useful fucntions related to calendar
import calendar # module of python to provide useful functions related to calendar
import datetime # module of python to get the date and time
import tkinter as tk

Expand All @@ -25,7 +25,7 @@ def find_day(date):

# To get the input from the user
# User may type 1/2/1999 or 1-2-1999
# To overcome those we have to process user input and make it standard to accept as defined by calender and time module
# To overcome those we have to process user input and make it standard to accept as defined by calendar and time module
def printt():
user_input = user_input1.get()
date = process_date(user_input)
Expand Down