P
Q. What will be the output of the following Python code?
Code:
x = 'abcd'
for i in range(len(x)):
print(i)
for i in range(len(x)):
print(i)
- Correct Answer - Option(D)
- Views: 171
- Filed under category Python
Discusssion
Login to discuss.