What is the very first instruction of a Python Graphics program
Answers
Answered by
0
Answer:graphWin
Using the Graphics module
The import statement tells Python to include everything (*) from the graphics module as needed in this program. The first instruction of the main function calls a function called GraphWin that creates a graphics window that we can draw on.
Explanation:
Similar questions