Posts by Pablo Santos • 16 points
2 posts
-
0
votes1
answer85
viewsA: Traceback (Most recent call last) Math Domain error
The error happens because your program tries to get the square root of a negative number, which is not allowed by the function Math.sqrt. To get the complex values you will have to use the library…
pythonanswered Pablo Santos 16 -
0
votes1
answer2103
viewsA: Installing and importing the Pygame module in Vscode
You should install the package via terminal and not in IDLE. Open your system terminal and type in what you were trying to: python -m pip install pygame If different versions of Python are installed…