Question: Help me out with these 3 python questions: Question 1 1 pts If I wanted to use a function called predict_weather from a module named
Help me out with these 3 python questions:
Question 1 1 pts If I wanted to use a function called predict_weather from a module named weather, what would be a proper import statement if I wanted to use the function in my code as shown here: weather_tomorrow = weather.predict_weather() O import weather Ofrom weather import Ofrom weather import predict_weather O import predict_weather Question 2 1 pts If you wanted the window to be twice as wide as its current height, what would be a call to the GraphWin constructor that would do this? (Change it back after trying it out). win = GraphWin( 'Drawing', 700, 350, autoflush=False) O win = GraphWin( 'Drawing, 350, 700, autoflush=False) O win = GraphWin( 'Drawing, 350, 175, autoflush=False) win = GraphWin( 'Drawing, 350, 350, aspect_ratio=2.0) > Question 3 1 pts The two numbers in Point control the position where the Circle is on the screen. If we want the circle to move down, what kind of change should be made? Test it out before answering. The second number in Point should be increased. O The second number in Point should be decreased. The first number in Point should be increased. The first number in Point should be decreased
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
