Computer Science, asked by nargisrhs5943, 9 months ago

Write a program to convert hours mins into second

Answers

Answered by Anonymous
7

\Large{\underline{\underline{\red{\sf{AnsWer :}}}}}

______[Code]_______

# Python Program

x = int(input("Enter Number Of Hours"))

y = x * 60

print("Minutes are " , y)

______[Output]_______

>>> Enter Number Of Hours 2

Minutes are 120

\rule{200}{2}

Additional Information

  • Python is Programming language.
  • It was developed by Guido Van Rossum .
  • It was developed in 1991 .
  • He made this language in National Research Institute for Mathematics, The Netherlands.
  • He names this language after a BBC Comedy Show.
Similar questions