下面代码的输出结果是?( )
import numpy as np x = np.array([1, 2, 3, 4, 5]) print(x[2:4])
[3 4]
[2 3]
[2 3 4]
[2 4]