There are many good things that can come out of it. There is good job training opportunities as well as learning the ways of the place. you can learn how people in that area work as well as their pace,emotions toward each-other and even lifestyles. there are many good outcomes to doing it.
Answer: developments is my best guess
Explanation:
Cooperation, agreements, trust Etc*
Take this one step at a time. Your teacher has given you the code for step 1. Now write step 2. Then 3, and so on.
For step 2: if you're using Python v2.x you'd use a line like
guess = int( raw_input( "Take another guess: " ) )
For Python v3.x it would be:
guess = int( input( "Take another guess: " ) )
Break it down into small pieces, it's not a complicated assignment.