2018年3月29日 星期四

[ Python 常見問題 ] How do I iterate through the alphabet in Python?

Source From Here 
Question 
As title. How do I iterate a-z without creating my own list of chars? 

How-To 
You can use string.ascii_lowercase which is simply a convenience string of lowercase letters: 
>>> from string import ascii_lowercase 
>>> ascii_lowercase 
'abcdefghijklmnopqrstuvwxyz' 
>>> for c in ascii_lowercase: 
... print('Char {}'.format(c)) 
... 
Char a 
Char b 
... 
Char z


沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...