Answers for "why dose pg.init() make an error in python"

1

module pygame has no member

"""If you are using pylint on Visual Studio Code write
this line at the beginning of the program :"""

# pylint: disable=no-member

"""the rest of the program :"""

x = bla bla
....
Posted by: Guest on February-04-2021
2

module 'pygame' has no 'init' member

"python.linting.pylintArgs": [
    "--extension-pkg-whitelist=lxml"  // The extension is "lxml" not "1xml"
]
Posted by: Guest on September-14-2020

Code answers related to "why dose pg.init() make an error in python"

Python Answers by Framework

Browse Popular Code Answers by Language