Which statement is used to skip the current iteration of a loop?
In order to store values in terms of key and value we use what core data type.
To check whether string s1 contains another string s2, use ________
words = ["Python", "fun"]
index = 1
words.insert(index, "is")
print(words)
Which of the following is an invalid variable name?
What will be the output of the following Python statement?
>>>print('new' 'line')
Which architectural pattern does the Django web framework follow?
______________ returns a dictionary of the module namespace.
________________ returns a dictionary of the current namespace.
What will be the output of the following Python code?
>>> a={4,5,6}
>>> b={2,8,6}
>>> a+b