#data structures
2 posts tagged data structures. Clear filter
-
Destructuring Dictionaries in Python
Here is a quick and dirty way to destructure dictionaries in [Python] d = {'a':'Apple', 'b':'Banana','c':'Carrot'} a,b,c = [d[k] for k in ('a', 'b','c')] a == 'Apple' b == 'Banana' c == 'Carrot'
-
How to Merge a YAML File Into a Single Hash in Ruby
require 'yaml' Nested YAML structure from something-nested.yml nested: key: value keytwo: valuetwo Procedural Approach to building a single Hash from nested YAML data structure. @yaml =...