Q. Write the output of the following:
Code:
T=["flow","of","Control"]
T1=range(len(T))
for i in T1:
print(T[i].upper(), end="-")
β
Correct Answer: (A)
FLOW-OF-CONTROL-