Use sapply
and pass to it [
as the function and tell it you want to extract the second element.
# Create your data set
dat <- list(c(100, 150), c(201, 202), c(147, 269), c(301, 401))
dat
#[[1]]
#[1] 100 150
#
#[[2]]
#[1] 201 202
#
#[[3]]
#[1] 147 269
#
#[[4]]
#[1] 301 401
#
sapply(dat, "[", 2)
#[1] 150 202 269 401
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…