pygame.draw.rect(screen, BROWN, [60, 400, 30, 45])
Error:Traceback (most recent call last):
File "<pyshell#3>", line 1, in <module>
pygame.draw.rect(screen, BROWN, [60, 400, 30, 45])
NameError: name 'pygame' is not defined
How to solve this error ?
Python Traceback Error
|
pygame.draw.rect(screen, BROWN, [60, 400, 30, 45]) How to solve this error ?
Nov-25-2016, 03:39 PM
if this is all you got, then you need to import pygame (if you have it installed).
import pygame ...
Recommended Tutorials:
Nov-25-2016, 03:53 PM
How to check if I have pygame installed ?
Nov-25-2016, 04:10 PM
if you dont know then its most likely not installed.
http://python-gaming.com/pygame/downloads.html
Recommended Tutorials:
Nov-28-2016, 08:51 PM
That's easy. Try to import it. If you get an error, then it's not installed.
C:\Users\this-guy\Documents\etc>python Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2016, 22:01:18) [MSC v.1900 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import pygame >>> |
|
Possibly Related Threads… | |||||
Thread | Author | Replies | Views | Last Post | |
Python Traceback Error | mg24 | 2 | 1,568 |
Nov-21-2022, 02:35 PM Last Post: snippsat |
|
![]() |
python exception handling handling .... with traceback | mg24 | 3 | 3,356 |
Nov-09-2022, 07:29 PM Last Post: Gribouillis |
Traceback error in PyCharm but not in other IDEs? | devansing | 7 | 8,513 |
Mar-05-2020, 11:27 AM Last Post: buran |
|
Nameparser - Traceback error | tjnichols | 2 | 3,063 |
Feb-28-2020, 05:11 PM Last Post: GodMaster |
|
I have Traceback error and a type error and i dont know how to fix it | coltron1282 | 2 | 3,174 |
Feb-07-2019, 03:15 PM Last Post: coltron1282 |
|
Unexpected output, TypeError and traceback error | fier259 | 2 | 3,930 |
May-06-2018, 10:52 PM Last Post: fier259 |
|
CSV unable to import (traceback error) | learnermarx | 3 | 7,278 |
Feb-09-2018, 03:24 PM Last Post: buran |
|
[error]Traceback | kikoko_2 | 1 | 3,251 |
Dec-01-2017, 11:30 PM Last Post: Windspar |
|
Python Error (Traceback & ValueError) Help! | helpplease | 4 | 7,124 |
Dec-19-2016, 06:07 PM Last Post: Ofnuts |