我需要知道如何对列表进行排序并删除数字

时间:2019-02-04 18:39:58

标签: python python-3.x

x = ['2chennai','2hyderabad','4istanbul','5bogota','9barcelona']

for isalpha in x:
    sort(x)

1 个答案:

答案 0 :(得分:-1)

您可以将filter的{​​{1}}函数用作对str.isalpha中字符串中的字符的测试条件:

x

这将返回:

sorted((''.join(filter(str.isalpha, s)) for s in x))