JMatlack wrote:
Just wanted to know:
If I create a game using python and pygame, how can I make it usable on an internet site like facebook without needing the user to have python?
If you're creating a game for Facebook or some other social media site, the code is entirely on the back end. For Facebook, specifically, you will write your program to generate Facebook Markup Language (FBML) which is then processed by Facebook.
The end user does not need Python on their machine to use your app.
Google "Python FBML" for more information on how to create your Facebook app in Python.