Last active
February 13, 2021 22:43
-
-
Save dkhmelenko/23f22b8151a4529bfcc5de2fce8aaa06 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
ratings = {"Namaste": 3.8, "At Luigi": 3.7, "Peruvian": 4.4, "Hannes": 3.9, "Creperie": 4.2} | |
top_rated = {name: rating for name, rating in ratings.items() if rating > 4.0} | |
print(top_rated) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment