Answer:
print("minute to hour: ",(float(input("enter minutes: "))/60))
Explanation:
>>> first of all we will take input from the user and promt the user to enter minutes
>>> then we will type cast the string inout to float value
>>> then we will divide the number by 60 to convert minutes into hours
>>> and then print the result