Calendar Module
-
Practice>Python>Date and Time>Calendar Modulehackerrank.com 2019. 2. 13. 20:29
Calendar ModuleProblem link : https://www.hackerrank.com/challenges/calendar-module/problemDifficulty : easy TipWe can solve this problem with datetime, but let's try to use calendarcalendar.weekday(y, m, d) return index of the day of weekcalendar.day_name, this is array which contain the days as current localeDon't forget day name should be upper-case! Solution import calendar m, d, y = map(int..