Skip to content

Instantly share code, notes, and snippets.

@raiderrobert
Created December 18, 2018 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raiderrobert/6546486260b25b6ff636e55feb83476c to your computer and use it in GitHub Desktop.
Save raiderrobert/6546486260b25b6ff636e55feb83476c to your computer and use it in GitHub Desktop.
Dictionary Setup Comparison
markdown_document = dict(
header = list(()),
sales = list(()),
project = list(()),
leads = list(()),
devinf = list(()),
qa = list(()),
implementor = list(()),
support = list(()),
footer = list(())
)
# or this way
markdown_document = {
"header" :[],
"sales" :[],
"project" :[],
"leads" :[],
"devinf" :[],
"qa" :[],
"implementor" :[],
"support" :[],
"footer" :[]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment