summaryrefslogtreecommitdiff
path: root/comp/work/13/reverse_words.py
blob: 974ae4d2abcabb9e32391d79d95020fb5f995663 (plain)
1
2
3
4
5
6
def reverse_words(words):
    words.split(" ")
    output = []
    for i in words: