Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions 08_Day_Dictionaries/08_dictionaries.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ person = {
'last_name':'Yetayeh',
'age':250,
'country':'Finland',
'is_marred':True,
'is_married':True,
'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'],
'address':{
'street':'Space street',
Expand Down Expand Up @@ -119,7 +119,7 @@ person = {
'last_name':'Yetayeh',
'age':250,
'country':'Finland',
'is_marred':True,
'is_married':True,
'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'],
'address':{
'street':'Space street',
Expand All @@ -141,7 +141,7 @@ person = {
'last_name':'Yetayeh',
'age':250,
'country':'Finland',
'is_marred':True,
'is_married':True,
'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'],
'address':{
'street':'Space street',
Expand Down Expand Up @@ -172,7 +172,7 @@ person = {
'last_name':'Yetayeh',
'age':250,
'country':'Finland',
'is_marred':True,
'is_married':True,
'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'],
'address':{
'street':'Space street',
Expand Down Expand Up @@ -202,7 +202,7 @@ person = {
'last_name':'Yetayeh',
'age':250,
'country':'Finland',
'is_marred':True,
'is_married':True,
'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'],
'address':{
'street':'Space street',
Expand Down Expand Up @@ -247,7 +247,7 @@ person = {
'last_name':'Yetayeh',
'age':250,
'country':'Finland',
'is_marred':True,
'is_married':True,
'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'],
'address':{
'street':'Space street',
Expand Down
4 changes: 2 additions & 2 deletions 10_Day_Loops/10_loops.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ person = {
'last_name':'Yetayeh',
'age':250,
'country':'Finland',
'is_marred':True,
'is_married':True,
'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'],
'address':{
'street':'Space street',
Expand Down Expand Up @@ -339,7 +339,7 @@ person = {
'last_name': 'Yetayeh',
'age': 250,
'country': 'Finland',
'is_marred': True,
'is_married': True,
'skills': ['JavaScript', 'React', 'Node', 'MongoDB', 'Python'],
'address': {
'street': 'Space street',
Expand Down