0
How can I use Python to create a game
8 Answers
+ 3
Check out the library "pygame," it's great for creating games. Notice that you need to install it first.
Turtle can also do well.
+ 2
Thanks. I'll just check the store.
+ 2
either pygame or pyglet.
pygame is a very easy to use library for small games if you are starting out.
pyglet is a pure python OpenGL wrapper for 2D/3D graphical work, and is more complicated.
sadly if you want to do any graphical stuff on Android you should look for another language, because Python is not really built for it, neither are the libraries. in fact, for anything Android you should learn Java, because it's the language android uses for its applications.
+ 1
Can I get those applications on android ?
+ 1
One way to find out...
+ 1
thanks a lot daniels
+ 1
there IS a Python library/framework for developing Android apps, but i didn't like it. it's called Kivy.
https://kivy.org/#home
+ 1
Thanks