What will be the output of the following Python code?
import random
print(random.randrange(0,91,5))
Qus
निम्नलिखित Python कोड का आउटपुट क्या होगा?
import random
print(random.randrange(0,91,5))
A. 10 B. 18
C. 79 D. 95
Solution
A. 10
Explanation
The function shown above will generate an output which is a multiple of 5 and is between 0 and 91. The only option which satisfies these criteria is 10. Hence the only possible output of this function is 10.