Skip to content
View claytonjroberts's full-sized avatar

Sponsoring

@Homebrew

Highlights

  • Pro
Block or Report

Block or report claytonjroberts

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
claytonjroberts/README.md

What's up! 🤙🏻

My name is Clayton.

I like motorcycles, photography, rock climbing, airplane piloting and coding in Python 🐍.

LinkedIn

Pinned Loading

  1. Python 3: Permutations of a dict of ... Python 3: Permutations of a dict of lists into a list of dicts
    1
    """Get all combinations of values of a dictionary and return a list of dictionaries"""
    2
    
    
    3
    import itertools
    4
    
    
    5
    d = {1: [1, 2, 3, 4], 2: [5, 6], 3: [7]}