Skip to content

Instantly share code, notes, and snippets.

@codertcet111
Created September 22, 2020 14:46
Show Gist options
  • Save codertcet111/36435f99e31f5e90340a13abd2499f8d to your computer and use it in GitHub Desktop.
Save codertcet111/36435f99e31f5e90340a13abd2499f8d to your computer and use it in GitHub Desktop.
students = {
Shubham: 'Expert in maths',
Ashwin: 'Expert in physics',
Sneha: 'Expert in Dance and Art'
}
students[:Ashwin]
# O/p:
'Expert in physics'
students.keys
# O/p:
[:Shubham, :Ashwin, :Sneha]
students.values
# O/p:
["Expert in maths", "Expert in physics", "Expert in Dance and Art"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment