Discuss / Python / 2019.7.12

2019.7.12

Topic source

森林木jeff

#1 Created at ... [Delete] [Delete and Lock User]
def compare(x):    return x == x[::-1]def reversal(a):    b = map(str, a)    print(list(filter(compare, b)))

  • 1

Reply