Robotics & Artificial Intelligence
What will be the output of the following Python code?
x = [1, 2, 3, 4]
x.append([5, 6])
print(x)
Related Questions
Mention any two types of cyber threats.
How does data acquisition play a key role in Artificial Intelligence project cycle?
What will be the output of the following Python code?
a = "hello" b = "world" print(a + b)What will be the output of the following Python code?
x = {1: 'apple', 2: 'banana'} x[3] = "cherry" print(x)