Created
September 22, 2020 14:46
-
-
Save codertcet111/36435f99e31f5e90340a13abd2499f8d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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