codewars--kyu8-The falling speed of petals
Posted zivaro
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codewars--kyu8-The falling speed of petals相关的知识,希望对你有一定的参考价值。
这个题目计算花瓣落下的速度。距离一定送一个速度计算落下的时间。
如果速度送的是小于等于0 ,就返回0 .
1 def sakura_fall(v): 2 if v<=0 : 3 return 0 4 return 5*80/v 5 # your code here
When it‘s spring Japanese cherries blossom, it‘s called "sakura" and it‘s admired a lot. The petals start to fall in late April.
Suppose that the falling speed of a petal is 5 centimeters per second (5 cm/s), and it takes 80 seconds for the petal to reach the ground from a certain branch.
Write a function that receives the speed (in cm/s) of a petal as input, and returns the time it takes for that petal to reach the ground from the same branch.
Notes:
- The movement of the petal is quite complicated, so in this case we can see the velocity as a constant during its falling.
- Pay attention to the data types.
- If the initial velocity is non-positive, the return value should be
0
以上是关于codewars--kyu8-The falling speed of petals的主要内容,如果未能解决你的问题,请参考以下文章