What will be the output of the following code?
x = 5 y = 10
if x > y:
print("x is greater")
else:
print("y is greater")
What does the "range" function in Python do?
What does the "not in" operator do in Python?
Which of the following is a valid way to comment in Python?
What does the "+= " operator do in Python?
How do you check the length of a list in Python?
How do you check if a variable is of a certain type in Python?
What will be the output of the following code?
x = 7 y = 2
print(x // y)
What is the default value for parameters in a Python function?
What does the "//" operator do in Python?