标签: python python-3.x
x = ['2chennai','2hyderabad','4istanbul','5bogota','9barcelona'] for isalpha in x: sort(x)
答案 0 :(得分:-1)
您可以将filter的{{1}}函数用作对str.isalpha中字符串中的字符的测试条件:
filter
str.isalpha
x
这将返回:
sorted((''.join(filter(str.isalpha, s)) for s in x))