Report Bug
Qus :

What will be the output of the following ?

print((range(4)))

Qus

निम्नलिखित का आउटपुट क्या होगा?

print((range(4)))


A. 0,1,2,3
B. [0,1,2,3]
C. range(0, 4)
D. (0,1,2,3)


Solution
C. range(0, 4)






Report Bug