_____ data type does not allow duplicate values in python.
Which statement is used to terminate a loop immediately?
Deduce output of the following code:
x=12
y=2
z=y<x and z>x or y>x and x<y
print(z)
Which of the following is true if x=784 and y=67?
What will be the output of the following Python code snippet?
print('0xa'.isdigit())
What is the output of the given code?
string="Learning"
print(string)
string="Abekus"
print(string)
What is the output of the following code?
x = 2,
print(x)
print(type(x))
What is the output of the following code?
a="Abekus"
print("Hello welcome to {}.".format(a))