Wednesday, February 23, 2022

KE

import math
Velocity = float(input("Enter V in m/s "))
mass =     float(input("mass in g "))

massV = (1/2 * mass) * Velocity
print((massV), "J")

No comments:

Post a Comment

Gammon => Ham Calculator V1.0

def ham_cooking_time (grams): """ Calculates the cooking time for a ham based on its weight. Args: g...