在一个列表中,找到它的最小元素的下标值。输入:输入一行数据,包含若干个整数,数据之间用英文空格分隔,表示列表
a=input().split(',') a=[float(i) for i in a] print(a.index(min(a)))