第14735题 单选
现有列表listV = list(range(10)),以下选项中能够输出列表最小元素的是?
A
print(min(listV))
B
print(listV.max())
C
print(min(listV()))
D
print(listV.revrese(i)[0])