有没有办法覆盖字符?这样的事情。
for c in xrange( 'a', 'z' ):
print c
希望你们能帮上忙。
Answers:
这对于自定义生成器很有用:
Python 2:
def char_range(c1, c2):
"""Generates the characters from `c1` to `c2`, inclusive."""
for c in xrange(ord(c1), ord(c2)+1):
yield chr(c)
然后:
for c in char_range('a', 'z'):
print c
Python 3:
def char_range(c1, c2):
"""Generates the characters from `c1` to `c2`, inclusive."""
for c in range(ord(c1), ord(c2)+1):
yield chr(c)
然后:
for c in char_range('a', 'z'):
print(c)
def char_range(c1, c2, step=1)
...ord(c1), ord(c2)+1, step
char_range('g','a',-1)
给出['g', 'f', 'e', 'd', 'c']
ord(c2)
。因此,请替换ord(c2)+1
为ord(c2) + (1 if step > 0 else -1)
。尽管为了清楚起见,您可能希望将其排除在外range()
。
您必须将字符转换为数字,然后再次返回。
for c in xrange(ord('a'), ord('z')+1):
print chr(c) # resp. print unicode(c)
为了美观和可读性,您可以将其包装在生成器中:
def character_range(a, b, inclusive=False):
back = chr
if isinstance(a,unicode) or isinstance(b,unicode):
back = unicode
for c in xrange(ord(a), ord(b) + int(bool(inclusive)))
yield back(c)
for c in character_range('a', 'z', inclusive=True):
print(chr(c))
可以使用inclusive=False
(默认)调用此生成器以模仿Python的常规行为以排除end元素,或者使用inclusive=True
(默认)调用此生成器以包括它。因此,使用默认设置时inclusive=False
,'a', 'z'
将跨范围从a
到y
,不包括z
。
如果unicode中的任何一个为unicode a
,b
则以unicode返回结果,否则使用chr
。
当前(可能)仅适用于Py2。
我喜欢这样的方法:
base64chars = list(chars('AZ', 'az', '09', '++', '//'))
当然可以更加舒适地实现它,但是它既快速又容易并且可读性强。
发电机版本:
def chars(*args):
for a in args:
for i in range(ord(a[0]), ord(a[1])+1):
yield chr(i)
或者,如果您喜欢列表理解:
def chars(*args):
return [chr(i) for a in args for i in range(ord(a[0]), ord(a[1])+1)]
第一个产量:
print(chars('ĀĈ'))
<generator object chars at 0x7efcb4e72308>
print(list(chars('ĀĈ')))
['Ā', 'ā', 'Ă', 'ă', 'Ą', 'ą', 'Ć', 'ć', 'Ĉ']
而第二个产量:
print(chars('ĀĈ'))
['Ā', 'ā', 'Ă', 'ă', 'Ą', 'ą', 'Ć', 'ć', 'Ĉ']
真的很方便:
base64chars = list(chars('AZ', 'az', '09', '++', '//'))
for a in base64chars:
print(repr(a),end='')
print('')
for a in base64chars:
print(repr(a),end=' ')
输出
'A''B''C''D''E''F''G''H''I''J''K''L''M''N''O''P''Q''R''S''T''U''V''W''X''Y''Z''a''b''c''d''e''f''g''h''i''j''k''l''m''n''o''p''q''r''s''t''u''v''w''x''y''z''0''1''2''3''4''5''6''7''8''9''+''/'
'A' 'B' 'C' 'D' 'E' 'F' 'G' 'H' 'I' 'J' 'K' 'L' 'M' 'N' 'O' 'P' 'Q' 'R' 'S' 'T' 'U' 'V' 'W' 'X' 'Y' 'Z' 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 'u' 'v' 'w' 'x' 'y' 'z' '0' '1' '2' '3' '4' '5' '6' '7' '8' '9' '+' '/'
为什么list()
呢?不带base64chars
可能成为生成器(取决于您选择的实现),因此只能在第一个循环中使用。
类似的内容可以用Python 2存档。但是,如果您也想支持Unicode,则要复杂得多。为了鼓励您停止使用Python 2而转而使用Python 3,在这里我不介意提供Python 2解决方案;)
今天尝试避免将Python 2用于新项目。另外,在扩展旧项目之前,请先尝试将其移植到Python 3中-从长远来看,这是值得的!
在Python 2中正确处理Unicode极其复杂,如果从一开始就没有内置Unicode支持,则几乎不可能将其添加到Python 2项目中。
提示如何将其反向移植到Python 2:
xrange
代替range
unicodes
用于处理Unicode的第二个函数(?):
unichr
而不是chr
返回unicode
代替str
unicode
字符串args
以使ord
数组和下标正常工作# generating 'a to z' small_chars.
small_chars = [chr(item) for item in range(ord('a'), ord('z')+1)]
# generating 'A to Z' upper chars.
upper_chars = [chr(item).upper() for item in range(ord('a'), ord('z')+1)]
在这里使用@ ned-batchelder的答案,我正在对其进行一些修改 python3
def char_range(c1, c2):
"""Generates the characters from `c1` to `c2`, inclusive."""
"""Using range instead of xrange as xrange is deprecated in Python3"""
for c in range(ord(c1), ord(c2)+1):
yield chr(c)
然后,与内德的答案相同:
for c in char_range('a', 'z'):
print c
谢谢内德!
使用清单理解:
for c in [chr(x) for x in range(ord('a'), ord('z'))]:
print c
另一个选项(像范围一样操作-如果希望包含在内,则加1以停止)
>>> import string
>>> def crange(arg, *args):
... """character range, crange(stop) or crange(start, stop[, step])"""
... if len(args):
... start = string.ascii_letters.index(arg)
... stop = string.ascii_letters.index(args[0])
... else:
... start = string.ascii_letters.index('a')
... stop = string.ascii_letters.index(arg)
... step = 1 if len(args) < 2 else args[1]
... for index in range(start, stop, step):
... yield string.ascii_letters[index]
...
>>> [_ for _ in crange('d')]
['a', 'b', 'c']
>>>
>>> [_ for _ in crange('d', 'g')]
['d', 'e', 'f']
>>>
>>> [_ for _ in crange('d', 'v', 3)]
['d', 'g', 'j', 'm', 'p', 's']
>>>
>>> [_ for _ in crange('A', 'G')]
['A', 'B', 'C', 'D', 'E', 'F']
import string
,string.ascii_lowercase
。