Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
FarhaKousar1601 committed Nov 23, 2023
1 parent dbd7624 commit 2a60dce
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions day5nesteddic.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#dictionary Nested
Number = {
'one':1,
'two':2,
'three':3,
'four':4,

}

for value in Number.values():
print(value)

#remove the value and add:pop,pop.item,clear,del dict
Number.pop("two")
print(Number)

Number.clear()
print("Dictionary after using clear:", Number)

0 comments on commit 2a60dce

Please sign in to comment.