what is the output of the following code?
M=['b' *x for x in range(4)]
print(M)
Qus
निम्नलिखित कोड का आउटपुट क्या है?
M=['b' *x for x in range(4)] print(M)
A. ['', 'b', 'bb', 'bbb']
B. ['b,'bb', "bbb', "bbbb']
C. ['b','bb', bbb']
D. none of these