Write a function to calculate the kinetic energy of an object of mass m and velocity v
Topic: Write a function to calculate the kinetic energy of an object of mass m and velocity v
Solution
def cal_ke(mass:float,velocity:float)->float: return (mass*(velocity)**2)/2
List all Python Programs