chr(ord('A'))
______() method in itertool is similar to filter() method.
L = ['a','b','c','d']
print "".join(L)
Which of these is not a core data type in Python?
Deduce the output of the following code:
s={1,1,2,2,2,3,4,4,5}
y=len(s)
print(y)
What is the output of the given code?
nums=[]
nums.append('Abekus')
nums.append(100)
print(nums)
What is the output of the following Python code?
print("xyyzxyzxzxyy".count('xyy', 2, 11))
What will be the output of the following Python code?
print('abcdef'.partition('cd'))
What is the purpose of Django's field class?
Is the following Python code valid?
>>> a=(1,2,3)
>>> b=('A','B','C')
>>> c=zip(a,b)