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
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?