Skip to content

Instantly share code, notes, and snippets.

@artistwhocodes
Last active June 20, 2019 02:09
Show Gist options
  • Save artistwhocodes/3db12969c32a465a94a679911a906fcf to your computer and use it in GitHub Desktop.
Save artistwhocodes/3db12969c32a465a94a679911a906fcf to your computer and use it in GitHub Desktop.
question = ["Name", "Age", "Location", "Color"]
answer = ["Pam", "?", "Hogwarts", "green"]
infor_section = question.zip(answer).to_h
infor_section.each do |k , v|
puts "#{k}:"
puts "#{v}"
puts "\n"
end
=begin
Name:
Pam
Age:
?
Location:
Hogwarts
Color:
green
=> {"Name"=>"Pam", "Age"=>"?", "Location"=>"Hogwarts", "Color"=>"green"}
=end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment