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 ed4f742 commit b6f8440Copy full SHA for b6f8440
physics/newtons_second_law_of_motion.py
@@ -34,7 +34,7 @@
34
__________________ ____________________
35
| The acceleration | | The acceleration |
36
| depends directly | | depends inversely |
37
- | on the net Force | | upon the object's |
+ | on the net force | | upon the object's |
38
| | | mass |
39
|__________________| |____________________|
40
@@ -66,6 +66,8 @@
66
67
def newtons_second_law_of_motion(mass: float, acceleration: float) -> float:
68
"""
69
+ Calculates force from `mass` and `acceleration`
70
+
71
>>> newtons_second_law_of_motion(10, 10)
72
100
73
>>> newtons_second_law_of_motion(2.0, 1)
0 commit comments