write a python program to print characters from a to f
Answers
Answered by
0
Answer:
l=['a','b','c','d','e','f']
for i in range(0,len(l)):
print(l[i])
Explanation:
Similar questions