Skip to content

Instantly share code, notes, and snippets.

@dkhmelenko
Created February 13, 2021 10:11
Show Gist options
  • Save dkhmelenko/0f39ec4a2404a506a3ea6975a43aa11e to your computer and use it in GitHub Desktop.
Save dkhmelenko/0f39ec4a2404a506a3ea6975a43aa11e to your computer and use it in GitHub Desktop.
reviews = [3.2, 1.1, 5.0, 4.4, 3.9, 4.8, 2.8, 4.1, 3.6]
top_reviews = [review for review in reviews if review > 4.0]
print(top_reviews)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment