Please select a subject first
Advertisements
Advertisements
Explain the following built-in function.
id()
Concept: undefined >> undefined
Explain the following built-in function.
chr()
Concept: undefined >> undefined
Advertisements
Explain the following built-in function.
round()
Concept: undefined >> undefined
Explain the following built-in function.
type()
Concept: undefined >> undefined
Explain the following built-in function.
pow()
Concept: undefined >> undefined
Which of the following is the output of the following python code?
str1="TamilNadu"
print(str1[::-1])Concept: undefined >> undefined
Defining strings within triple quotes allows creating: ______
Concept: undefined >> undefined
Strings in python: ______
Concept: undefined >> undefined
What is String?
Concept: undefined >> undefined
Do you modify a string in Python?
Concept: undefined >> undefined
Pick odd one in connection with collection data type?
Concept: undefined >> undefined
Let list1 = [2,4,6,8,10], then print(List1[-2]) will result in ______
Concept: undefined >> undefined
Which of the following function is used to count the number of elements in a list?
Concept: undefined >> undefined
If List = [10 ,20 ,30 ,40 ,50] then List[2] = 35 will result ______
Concept: undefined >> undefined
If List = [17,23,41,10] then List.append(32) will result ______
Concept: undefined >> undefined
Which of the following Python function can be used to add more than one element within an existing list?
Concept: undefined >> undefined
What will be the result of the following Python code?
S = [x**2 for x in range(5)]
print(S)
Concept: undefined >> undefined
Which of the following statement is not correct?
Concept: undefined >> undefined
Let setA = {3,6,9}, setB = {1,3,9}. What will be the result of the following snippet?
print(setA|setB)
Concept: undefined >> undefined
Which of the following set operation includes all the elements that are in two sets but not the ones that are common to two sets?
Concept: undefined >> undefined
