+ 1
List operations
str <- readLines('stdin') x <- list("name"="James", "age"=42, "country"="canada","id"=5067) #your code goes here x[["id"]] <- str print(x) It fails what is wrong with this code?
8 Answers
+ 6
I'm asking for problems statement, without knowing that how anyone can help you
As I don't see any syntax error in this code (acc. To me)
+ 5
Is it from code coach?
+ 5
Question ?
+ 1
I found it on the internet
+ 1
What is your question?
+ 1
The given code declares a list with some data and takes a string as input.
You need to add the taken string to the list as a new field called "id", and output the resulting list.
0
It is now solved
0
str <- readLines('stdin')
x <- list("name"="James", "age"=42, "country"="USA")
x[["id"]] <- str
print(x)
# it will work...