Skip to main content
Search
Search This Blog
Programming in Python
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
Labels
Basic Programs
September 12, 2021
Program to print time in seconds to time in minutes
#Program to print time in seconds to time in minutes
seconds = int(input("Enter time in seconds- "))
minutes = seconds // 60
sec = seconds % 60
print(minutes, "minutes and", sec, "seconds")
Output
Comments
Popular Posts
January 25, 2022
Program to generate 8-digit Password
Comments
Post a Comment