Python Comprehensions: What will the ‘comprehension equivalent’ be for the following snippet of code?

Code

for sentence in paragraph:
    for word in sentence.split():
        single_word_list.append(word)
Tags
programsbuzz banner