WAP to enter the time in seconds.Convert and dispkay it in minutes and seconds..
Chapter:-Python Programming..
Class:-IX
Answers
Answered by
1
Answer:
a=int(input("Enter time in seconds:"))
b=a//60
c=b%60
print("Time is ",b," minutes ",c," seconds"))
Explanation:
Similar questions