+ 1
How to get alphabets in order through loop in Python? Is it possible of getting alphabets through looping condition.
5 odpowiedzi
+ 1
alpha = ['a','b',c','d','e','f' etc..]
for i in range(len(alpha)):
print(alpha[i])
+ 1
https://code.sololearn.com/cY4Te9n3XFOd/?ref=app
https://code.sololearn.com/ccCSrpsh8YYx/?ref=app
take a look at these and they should have you printing the alphabet in python
+ 1
for i in range(97, 123):
print(chr(i))
0
you want to print the alphabet?
- 2
For i in range(97, 123):
Print(chr(i))