summaryrefslogtreecommitdiff
path: root/progs/a819.py
blob: f6b1e086b4e6a84dfb7da36111826047f2b78c93 (plain)
1
2
3
def reverse_string_list(stringlist):
    result = [x[::-1] for x in stringlist]
    return result