
Refer to the exhibit. Which snippet creates a Webex space and adds the users in the variable user_list to that space?
A.

B.

C.

D.

Refer to the exhibit. Which snippet creates a Webex space and adds the users in the variable user_list to that space?
A.
B.
C.
D.
The correct code snippet must create a Webex space and then add each user in the user_list to that space. The function add_user_to_space() takes two arguments: user and space. Therefore, the code needs to iterate over each user in the user_list and call add_user_to_space() with each user. The correct snippet is: space = create_space('Chatops Incident Space') for user in user_list: add_user_to_space(user, space)
B is right answer
Correct answer is B
definitely B
Just by looking at methods args and their docstrings you can tell it is B
B Basic python
I think B is correct
B, it is B
Going for B here