Mathematical operations can be performed on a string.
What is the output of the following code?
chr(ord('A'))
Which of these is not a core data type?
Functions that return an iterable set of items are called -----------------.
Which method is used to get position of a element in a list.
Which of the following is the use of id() function in python?
What will be the output of the following Python code?
a={1:"A",2:"B",3:"C"}
a.clear()
print(a)
What is the output of the given code?
List=['A','b','e','k','u','s']
sList=List[:]
print(sList)
What will be the output of the following Python code?
sentence = 'we are humans'
matched = re.match(r'(.*) (.*?) (.*)', sentence)
print(matched.groups(2))