Choose a topic to test your knowledge and improve your Python skills
ord() function in Python return the
How many argument we require to pass in ord() function in python
What we pass in ord() function ?
type() function in python is
To find the data type of any variable what we use ?
Which of the following function are used to find the data type of the numpy array
Which of the following are used in function
Which of the following is not a predefined function in python
Name the inbuld function of the python
Which keyword we use to define a function ?
list() function return the
sin() function is used to find the sine value, which function is used to find the inverse of sine ?
Which of the following is correct way to define a function in python?
what is the output of the following function print(type(3))
What is the output of the following code ? print(type(char))
Which of the following is returned by the join function ?
Which of the following data type we pass in join() function ?
Which of the following function are valid on list ?
Which of the following is not the function of list ?
What the append() function returns ?
what is the output of the following program l=[1,2,3,4] join(l)
In which data type, append() function is applicable ?
It is possible to create list inside another list ?
What we pass as a argument in append() function ?
How we get the ASCII value of any character in python programming language ?
Function that are defined without the use of def keyword are
In lambda function,passing argument and return statement are separated by
If function is defined inside the class then it is called
What is the use of the append() function in python list ?
Append() function in python is used for
What is the use of the index() function in Python List ?
What is the use of the count() function in python list ?
Return type of index() function in python list ?
What we pass in index() function ?
Number of argument pass in index() function ?
How many argument we pass in append() function ?
How many argument we pass in pop() lust function ?
Which of the following function is insert item in list according to index value ?
Which of the list function not take care of index value to perform the task ?
Which of the following are valid keyword or function for sort the given data ?
Which of the following is valid for reverse the sequence ?
set(list) remove the
numpy.array() is a function which convert
How we convert the list into the numpy array ?
pop() function is valid on
remove() function is valid on
Which of the following function is use for the file Handling ?
Which of the following is used to read the text file ?
What is the use of tell() function in File handling in python ?
Which of the following function is used to find the number of character in text file ?
File pointer read the text file char by char, to find the current position of the pointer which function we used ?
Which of the function is used to pause the current execution ?
Number of argument to pass in sleep() function ?
eval() is used to find the value of the
What is the work of the split() function ?
What we pass in split() function ?
Return type of split() function ?
By default split() function break the string according to the
Which of the function are used to get the value from the user side ?
What is the use of the input() function in python ?
Return type of the input() function is always
To convert numeric string into integer which function we use ?
Which of the following function is used to convert the integer to string
product() function is defined in which of the following ?
To add all item of the list, which function we use ?
Number of argument we pass in sum() function ?
To find the power of the two number we have only pow(x,y) function ?
To find the value of the inverse of tanx in python ?
Which of the following is valid to find the inverse of cosine ?
acos() function is use for finding the value of
What is the use of the filter() function ?
Filter() function is valid on
What is the use of the map() function ?
To copy the sign of one number to another which function we use ?
How many argument we pass in map() function ?
Which is essential argument to pass in map() function ?
Which type of function we call as a argument in map() function ?
After applying the filter() function on the list, the number of item in the list
Is it possible to pass a lambda function in filter() function ?
To change the lower case alphabet to upper case alphabet , what we use ?
To change the upper case alphabet to lower case alphabet , what we use ?
What we pass as a argument in upper() function ?
Return type of the lower() function ?
Return type of isupper() function is ?
What is return by the islower() function ?
string is : r4r.com then string.islower() return
string is : this is my string, then title() function return
What is return by the isdigit() function ?
If every character in string is of numeric type then what value is return by isdigit() function ?
What is the use of the isalpha() function in python ?
Correct syntax for the isalpha() function
correct syntax for the isdigit() function ?
What is the use of the replace() function ?
Minimum number of argument we require to pass in replace() function ?
Third argument in replace() function is
Which of the following function is use to change the case of the alphabet in whole string ?
string is: MYtext, then swapcase() function return string which is ?
Discard() function is only applicable on
what is the use of the discard() function ?
Which of the following function gives an error if we deleted the unknown item that is not present in set.