Grokking Python Fundamentals
Ask Author
Back to course home

0% completed

Vote For New Content
Quiz
On this page
What is the output of the below code?
numbers = [1, 2, 3, 4, 5]
numbers.append(6)
print(numbers)
A
[1, 2, 3, 4, 5]
B
[1, 2, 3, 4, 5, 6]
C
[6, 1, 2, 3, 4, 5]
D
Error

.....

.....

.....

Like the course? Get enrolled and start learning!

On this page