python中的列表组合?

时间:2018-10-02 18:41:18

标签: python

我正在编写一个具有列表的python程序:

letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', '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', 'X', 'Y', 'Z' ]
digits = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9' ]

如何创建列表或其他内容,以便我的选择语句可以识别

Identifiers = Letter { Letter | Digit }
Integers  = Digit { Digit }

任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:0)

Python字符串内置了对字母和数字的检查:

   s = "test1"
   for char in s:
       is_digit = char.isdigit()
       is_letter = char.isalpha() or is_digit
       print char, is_letter, is_digit

如果您尝试确定字符是字母还是数字,则应使用该字符。

答案 1 :(得分:0)

由于要获得integer的资格,整个项目必须为ints,如果项目通过了此测试,我们可以使用.isdigit(),如果失败则可以附加到integers上附加到identifiers

列表理解:

identifiers = [i for i in l if not i.isdigit()]
integers = [i for i in l if i.isdigit()]   

展开:

l = ['Aa', 'a3', '12']
identifiers = []
integers = []
for i in l:
    if i.isdigit():
        integers.append(i)
    else:
        identifiers.append(i)

print(identifiers)
print(integers)
['Aa', 'a3']
['12']