Write a function called good_market that receives no paramet…
Write a function called good_market that receives no parameters and randomly returns a number between 1 and 30, inclusive. Write another function called main that calls good_market. If the number returned is between 1-10 inclusive, return 0. If the number returned is between 11-20 inclusive, return the number. If the number returned is between 21-30 inclusive, return double the number. HINT: Make sure to import any modules you might need to use. Copy your answer into the textbox below.