FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
programminginpython.com/dictionaryOperations.py at master · rahulpml/programminginpython.com · GitHub
rahulpml
/
programminginpython.com
Public
forked from
avinashn/programminginpython.com
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
programminginpython.com
/
dictionaryOperations.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
34 lines (26 loc) · 561 Bytes
Breadcrumbs
programminginpython.com
/
dictionaryOperations.py
Copy path
File metadata and controls
34 lines (26 loc) · 561 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
__author__
=
'Avinash'
# add elements to dictionary
my_info
=
{
'Name'
:
'Avinash'
,
'Age'
:
23
,
'Gender'
:
'Male'
,
'Location'
:
'India'
,
'Website'
:
'programminginpython.com'
}
# print dictionary
print
(
my_info
)
# print value of a key
print
(
my_info
[
'Name'
])
# modify elements in dictionary
my_info
[
'Age'
]
=
24
print
(
my_info
)
# length of dictionary
print
(
len
(
my_info
))
# delete a particular key
del
my_info
[
'Website'
]
print
(
my_info
)
# removes all elements in dictionary
my_info
.
clear
()
print
(
my_info
)
# delete entire dictionary
del
my_info
Back
|
FazBrowse Home
|
New Git URL