05:17 mam how can we determine the alphabetical order (capital or small letter) by seeing the value of x ?
@hridaysaharan19722 жыл бұрын
Ma’am I have seen a question where else is used with while ..how it can be plz help
@hridaysaharan19722 жыл бұрын
What will be the output of the following Python program? i =0 while i < 5: print(i) I+= 1 if i == 3: break else: print(0)
@TECHQueenLovejeetArora2 жыл бұрын
l=[1,2,3] print(l*2)# Its Called Replication #Anser is - [1, 2, 3, 1, 2, 3] for i in l: print(i*2,end=",") #Anser is - 2,4,6, for i in range(len(l)): print(l[i]*2,end=",") # Anser is - 2,4,6,