Would Python be suitable for a sports statistics website?

2014-01-30 Thread britt . jonathan89
First off I wanted to apologize for the lack of specificity in my subject title. I am a relative newbie to programming and need some advice. I tried StackOverflow but was sort of turned away for not having code in my post. I have been assigned by an internship with my university's athletic depa

Re: Why is python not written in C++ ?

2010-08-05 Thread Britt
On Aug 1, 9:34 pm, Albert Hopkins wrote: > On Mon, 2010-08-02 at 01:08 +0200, candide wrote: > > I would propose that in fact most programming languages are implemented > in C.  Sun's (Oracle's) Java compiler and runtime are written in ANSI C. > The core of the Gnu Compiler Collection (which inclu

redefining a function through assignment

2005-09-08 Thread Daniel Britt
Hello All, I am new to Python so if there is an obvious answer to my question please forgive me. Lets say I have the following code in mod1.py class test: def func1(self):   print 'hello' Now lets say I have another file called main.py: import mod1 inst = mod1.tes