Created
February 13, 2021 10:11
-
-
Save dkhmelenko/0f39ec4a2404a506a3ea6975a43aa11e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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