已知列表 road = [22, 36, 48, 59, 73],判断 road.index(48) == 3 的结果是()
road = [22, 36, 48, 59, 73]
road.index(48) == 3
True
False
48
报错