Home Python What is the result of this command? What is the result of this command?Python 09daishagreenSeptember 19, 20221 CommentX = [] X.append(1) X.append(5 ) print(X) a. []b. 1, 5c. [1, 5]d. 1 5
My answer is [1, 5]