What will be the output of the following Python function, assuming that the random module has already been imported?
import random
random.uniform(3,4)
Qus
निम्नलिखित Python फ़ंक्शन का आउटपुट क्या होगा, यह मानते हुए कि रैंडम मॉड्यूल पहले ही इम्पोर्ट किया जा चुका है?
import random random.uniform(3,4)
A. Error
B. Either 3 or 4
C. Any integer other than 3 and 4
D. Any decimal value between 3 and 4