Computer Science, asked by piyushjoshi15, 10 months ago

write a python program to print characters from a to f​

Answers

Answered by arnab444
0

Answer:

l=['a','b','c','d','e','f']

for i in range(0,len(l)):

   print(l[i])

Explanation:

Similar questions