- 1
Can anyone show me how to make a list of alphabets without actually having to type every letter into the list myself?
4 Respuestas
+ 6
This could be one quick solution.
https://code.sololearn.com/c0AUqx7MD6M4/?ref=app
+ 3
by yourself (and without import):
https://code.sololearn.com/cQJsbTSn4odQ/?ref=app
+ 1
letters = string.ascii_lowercase
+ 1
import string