Grokking Python Fundamentals
Ask Author
Back to course home

0% completed

Vote For New Content
Quiz

What is the output of the below code?

numbers = [1, 2, 3, 4, 5]
numbers.append(6)
print(numbers)
[1, 2, 3, 4, 5]
[1, 2, 3, 4, 5, 6]
[6, 1, 2, 3, 4, 5]
Error

.....

.....

.....

Like the course? Get enrolled and start learning!