Skip to content

Instantly share code, notes, and snippets.

@dkhmelenko
Last active February 13, 2021 22:43
Show Gist options
  • Save dkhmelenko/23f22b8151a4529bfcc5de2fce8aaa06 to your computer and use it in GitHub Desktop.
Save dkhmelenko/23f22b8151a4529bfcc5de2fce8aaa06 to your computer and use it in GitHub Desktop.
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