回答編集履歴

3

追記

2020/07/27 20:38

投稿

ForestSeo
ForestSeo

スコア2722

test CHANGED
@@ -2,4 +2,16 @@
2
2
 
3
3
  Qiitaに載ってました。
4
4
 
5
+ ```Python
6
+
7
+ import numpy as np
8
+
9
+ lst = [4, 7, 9]
10
+
11
+ num = 5
12
+
5
- で返ってきた値を`lst.index(・・・)`でindexを取得
13
+ idx = np.abs(np.asarray(lst) - num).argmin()
14
+
15
+ print(idx)
16
+
17
+ ```

2

追記

2020/07/27 20:38

投稿

ForestSeo
ForestSeo

スコア2722

test CHANGED
@@ -1,3 +1,5 @@
1
1
  まさに[こちら](https://qiita.com/icchi_h/items/fc0df3abb02b51f81657)ですね。
2
2
 
3
3
  Qiitaに載ってました。
4
+
5
+ で返ってきた値を`lst.index(・・・)`でindexを取得

1

追記

2020/07/27 20:35

投稿

ForestSeo
ForestSeo

スコア2722

test CHANGED
@@ -1 +1,3 @@
1
- まさにhttps://qiita.com/icchi_h/items/fc0df3abb02b51f81657ですね。
1
+ まさに[こちら](https://qiita.com/icchi_h/items/fc0df3abb02b51f81657)ですね。
2
+
3
+ Qiitaに載ってました。