Skip to content
Open
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
8 changes: 4 additions & 4 deletions 09_Day_Conditionals/09_conditionals.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down