Multisplit: Difference between revisions

Content deleted Content added
We will need some clarification here...
Line 5: Line 5:


=={{header|Python}}==
=={{header|Python}}==
===Normal Code===
<lang python>def min_pos(List):
<lang python>def min_pos(List):
return List.index(min(List))
return List.index(min(List))