Untitled
unknown
plain_text
a year ago
251 B
4
Indexable
list_data<-list(c("Red","Green","Black"),matrix(c(1,3,5,7,9,11),nrow=2), list("python","php","java")) print("list:") print(list_data) print("remove the second element of the list:") list_data[2]=NULL print("New list:") print(list_data)
Editor is loading...
Leave a Comment