Coders Packet

Packets submitted by Kunal bhati

Python program for relational operators

A relational operator is a programming language construct or operator that tests or defines some kind of relation between two entities. in python, there are 6 relational operators

Python program to convert number of days, hours, minutes and seconds to seconds

Developing a program that reads the number of days, hours, minutes, and seconds from the user. Calculate and display the total number of seconds represented by that duration.

Python program for creating dictionary object

In Python Dictionary is an ordered collection of data values, used to store data values. Python dictionary is an unordered collection of items. Each item of a dictionary has a key/value pair.