___loop can enter into an endless loop.
>>>a=[1,2,3,4,5]
>>>b=[10,20,30]
>>>a.append(b)
>>>print(len(a))
Given:
x = 25
y = 10
x, y = y % 3, x // 2
What is the value of y - x?
What is the output of the given code?
tuple=('Abekus')
print(tuple[::-1])
What will be the output of the following Python code?
>>>t=(1,2,4,3)
>>>t[1:-1]
The module _______________ is a comparatively faster implementation of the pickle module.
What will be the output of the following Python code?
What will be the output of the following Python code?
lst=[3,4,6,1,2]
lst[1:2]=[7,8]
print(lst)
Find the output of the following:
a=[95,97,91,99,93]
b=a[2:5]
print(b)
c=b[2:]
d=c
print(c)
Is the following Python code valid?
>>> a,b=1,2,3