HackerRank Nested Lists problem solution in Python | Hacker Rank Python Question Solution

Given the names and grades for each student in a class of N students, store them in a nested list and print the name(s) of any student(s) having the second…

Continue ReadingHackerRank Nested Lists problem solution in Python | Hacker Rank Python Question Solution

HackerRank What’s your name solution in Python | python problem solution

You are given the firstname and lastname of a person on two different lines. Your task is to read them and print the following:Hello firstname lastname! You just delved into python.Function DescriptionComplete…

Continue ReadingHackerRank What’s your name solution in Python | python problem solution

HackerRank Python Division problem solution | python Question Solution

TaskThe provided code stub reads two integers, a and b, from STDIN. Add logic to print two lines. The first line should contain the result of integer division,  a//b . The second line should contain…

Continue ReadingHackerRank Python Division problem solution | python Question Solution

HackerRank Python If-Else problem solution | python Questions Solutions

TaskGiven an integer, , perform the following conditional actions:If  is odd, print WeirdIf  is even and in the inclusive range of  to , print  Not WeirdIf  is even and in the inclusive range of  to , print WeirdIf  is even and…

Continue ReadingHackerRank Python If-Else problem solution | python Questions Solutions

HackerRank Calendar Module problem solution in python | python problem solution

Calendar ModuleThe calendar module allows you to output calendars and provides additional useful functions for them.class calendar.TextCalendar([firstweekday])This class can be used to generate plain text calendars.Sample Code>>> import calendar>>> >>>…

Continue ReadingHackerRank Calendar Module problem solution in python | python problem solution