我有两个端点如下,我希望将预期结果作为列表。有人可以帮助实现这一点,而无需在Python中使用numpy。
<FrameLayout
android:layout_width="match_parent"
android:layout_height="250dp"
...>
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
.../>
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
.../>
</FrameLayout>
答案 0 :(得分:0)
def frange(start, stop, step):
while start <= stop:
yield start
start += step
>>> list(frange(15, 27.5, 0.5))
[15, 15.5, 16.0, 16.5, 17.0, 17.5, 18.0, 18.5, 19.0, 19.5, 20.0, 20.5, 21.0, 21.5, 22.0, 22.5, 23.0, 23.5, 24.0, 24.5, 25.0, 25.5, 26.0, 26.5, 27.0, 27.5]