Computer Science, asked by yadavshalini874, 11 months ago

WAP to enter the time in seconds.Convert and dispkay it in minutes and seconds..



Chapter:-Python Programming..
Class:-IX​

Answers

Answered by jessicashegin
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