DAY 16: ----- 1.Date Format QUESTIONS(Theory) -------------- 1.Under which module Date Function are available? 2.Whether datetime is class or not ? 3.What will be default date format? 4.What are Method available in datetime class? 5.What is purpose of now() method? 6.What is Purpose of strftime() method? 7.What is difference between %Y and %y? 8.What is difference between %B and %b ? 9.Is it possible to pass date as constructor ? 10.How many parameter need for datatime() class? 11.What is type of datetime.now() and datetime(2020,3,12)? QUESTIONS(Programs): ---------------------- QUESTION 1: ------------ Description : print the Current Date and time QUESTION 2: ------------ Description : print the Current Date and time and Below format Print Year in format -->2020 Print Year in format -->20 QUESTION 3: ------------ Description : print the Current Date and time and Below format Print month in format -->June Print month in format -->Jun QUESTION 4: ------------ Description : print the Current Date and time and Below format Print day in format --> Wednesday Print day in format --> Wed QUESTION 5: ------------ Description : print the Current Date and time in the format Year-month-day QUESTION 6: ------------ Description : print the Current Date and pass argument in constructor Example : datetime.datetime(2020,6,12) QUESTION 7: ------------ Description : print the Current Date and pass argument in constructor Example : datetime.datetime(2020,"June",12)