Write a function called my_market that receives no parameter…
Write a function called my_market that receives no parameters and randomly returns a number between 1 and 17, inclusive. Write another function called main that calls my_market. If the number returned is between 1-7 inclusive, return 0. If the number returned is between 8-13 inclusive, return the number. If the number returned is between 14-17 inclusive, return double the number. HINT: Make sure to import any modules you might need to use. Copy your answer into the textbox below.