Q. Write the output of the following code
Code:a = "AMIT"
for i in range(len(a)):
print(a)
β
Correct Answer: (C)
AMIT AMIT AMIT AMIT
a = "AMIT"
for i in range(len(a)):
print(a)
You must be Logged in to update hint/solution