What is the return value of trunc()?
Keywords in python are?
What data type is the object L = [1, 23, 'hello', 1]
?
If ABC is a list, how do you find the last element of it?
Which of the following programming languages is interpreted rather than compiled?
Which of the following is an invalid variable name in Python?
Which of the following results in a Syntax Error?
Which of the following functions results in an error?
What will be the output of the following Python code?
d = {0: 'a', 1: 'b', 2: 'c'}
for x, y in d.items():
print(x, y)