Which module provides an interface to the built-in garbage collector?
escape = "died and\\\b they lived happily ever after\r...."
print escape
Which of the following is not a scripting language?
Procedures or functions defined within an object are known as ______.
What will be the output of the following Python expression if x=22.19?
print("%5.2f"%x)
Suppose t = (1, 2, 4, 3), which of the following is incorrect?
How are static files managed in Django?
What will be the value of following python code
i=1 while True: if i%3==0: break print(i) i + = 1
Deduce the output of the following code:
x = 54
y = 54
z = 52
z += 2
print(id(x) == id(y))
print(id(x) == id(z))
def myfunc(text, num):
while num > 0:
print(text)
num = num - 1
myfunc('Hello', 4)