Which one of these is floor division?
What will be the output of the following Python code?
pickle.HIGHEST_PROTOCOL
What will be the output of the following Python code?
class Truth:
pass
x=Truth()
bool(x)
Program code making use of a given module is called a ______ of the module.
What will be the output of the following Python code?
x = 'abcd'
for i in range(len(x)):
print(i)
Find the output of the following code:
lst=[1,2,3,4,5]
x=list(filter(lambda x: x+2, lst))
print(x)
To include the use of functions which are present in the random library, we must use the option: