Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
S = [a[n],b[n],c[n]]リストがあり、リストn=0の最小S値は value'a'です。b値を選択するにはどうすればよいcですか?また、最小値がわかっている場合はどうすればよいですか? 私が書いているコードは の多くの反復をn実行し、ループ内の特定の反復の最小値ではない要素を調べたいと考えています。
S = [a[n],b[n],c[n]]
n=0
S
'a'
b
c
n
Python 2.7.3、32 ビット。ナンピー 1.6.2。Scipy 0.11.0b1
多分あなたは次のようなことができます
S.sort() S[1:3]
これはあなたが望むものですか?