Write a function to calculate the velocity of an object with initial velocity u, time t and acceleration a
Topic: Write a function to calculate the velocity of an object with initial velocity u, time t and acceleration a
Solution
def cal_final_velocity(initial_velocity:float,accelration:float,time:float)->float: return initial_velocity + accelration*time
List all Python Programs