diff --git a/09_Day_Conditionals/09_conditionals.md b/09_Day_Conditionals/09_conditionals.md index 811908c7e..50e356eb2 100644 --- a/09_Day_Conditionals/09_conditionals.md +++ b/09_Day_Conditionals/09_conditionals.md @@ -273,10 +273,10 @@ Enter number two: 3 } ``` - * Check if the person dictionary has skills key, if so print out the middle skill in the skills list. - * Check if the person dictionary has skills key, if so check if the person has 'Python' skill and print out the result. - * If a person skills has only JavaScript and React, print('He is a front end developer'), if the person skills has Node, Python, MongoDB, print('He is a backend developer'), if the person skills has React, Node and MongoDB, Print('He is a fullstack developer'), else print('unknown title') - for more accurate results more conditions can be nested! - * If the person is married and if he lives in Finland, print the information in the following format: + Check if the person dictionary has skills key, if so print out the middle skill in the skills list. + Check if the person dictionary has skills key, if so check if the person has 'Python' skill and print out the result. + If a person skills has only JavaScript and React, print('He is a front end developer'), if the person skills has Node, Python, MongoDB, print('He is a backend developer'), if the person skills has React, Node and MongoDB, Print('He is a fullstack developer'), else print('unknown title') - for more accurate results more conditions can be nested! + If the person is married and if he lives in Finland, print the information in the following format: ```py Asabeneh Yetayeh lives in Finland. He is married.