Thursday, June 18, 2020

Python Class 161 (Average Acceleration) - Kapil

print ("*** Application to calculate the Average Acceleration ***")

def AA_function(n1n2):
  return(n1/n2)

print ("\n")

#Average Acceleration = V/T

VV = float(input("Please enter the final velocity value in KM:"))
TV = float(input("Please enter the elapsed time value in hours:"))

print("The Average Acceleration value is:",(AA_function(VV, TV)),"KM per hour")


===============================================================

https://github.com/bornfreesoul/PythonLessons

https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg 

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Blockchain: 101 (By - Kapil Sharma)

 https://testing-mines.blogspot.com/2021/10/blockchain-101-by-kapil-sharma.html Blockchain through the following attributes: Distributed:  T...