Advertisements
Advertisements
प्रश्न
Identify the correct output(s) of the following code. Also write the minimum and the maximum possible values of the variable b.
import random
a = "Wisdom"
b = random.randint(1, 6)
for i in range(0, b, 2):
print(a[i], end='#')
पर्याय
W#
W#i#
W#s#
W#i#s#
MCQ
उत्तर
W#, W#s#
Minimum and maximum possible values of the variable b: 1, 6.
shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?