Skip to content

Instantly share code, notes, and snippets.

@ettorerizza
Created June 15, 2018 08:20
Show Gist options
  • Select an option

  • Save ettorerizza/83f975daee85a2686f3c5cd79d6a5eff to your computer and use it in GitHub Desktop.

Select an option

Save ettorerizza/83f975daee85a2686f3c5cd79d6a5eff to your computer and use it in GitHub Desktop.
aperçu d'un gros dictionnaire Python
import itertools
def glance(d):
"""aperçu d'un échantillon non ordonné d'un dictionnaire"""
return dict(itertools.islice(d.items(), 3))
glance(json_file)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment