30-Days-Of-Python
30-Days-Of-Python copied to clipboard
Minor typo in day8
In the dictionary "person", a key is specified as "is_marred" instead of "is_married". Therefore, some examples don't run the code. person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } }
Thank you, for the great content Asabeneh.