We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 999ee9a commit 070e634Copy full SHA for 070e634
physics.py
@@ -0,0 +1,6 @@
1
+def calculate_force(mass):
2
+ acceleration = 9.8
3
+ force = mass * acceleration
4
+ return force
5
+
6
+print(calculate_force(float(input("enter mass:\n\n"))))
0 commit comments