Sorry to hear the bad news. As for Web development, since you are familiar with Python, there are lots of good starting points. One is Django, a very popular web framework for Python that lets you create applications quickly. (https://docs.djangoproject.com/en/dev/intro/tutorial01/) If you need more flexibility, you can look into "micro-frameworks" like Bottle or Flask that provide less out of the box, but at the cost of more work (potentially). There really are tons of options, but the tools selected should depend on the need.
Check out this Python wiki page for a good overview and some web frameworks: http://wiki.python.org/moin/WebFrameworks
Good luck!