Static Typing in Python

Jacek Generowicz jacek.generowicz at cern.ch
Fri Mar 12 11:02:47 EST 2004


Dang Griffith <noemail at noemail4u.com> writes:

> On 12 Mar 2004 13:56:53 +0100, Jacek Generowicz
> <jacek.generowicz at cern.ch> wrote:

> >Just what do you understand "static typing" to mean ?
> Doesn't that usually mean typing with a high noise-to-signal ratio?

What, you mean like this:

    std::list<std::pair<int, std::string> > l;
    l.push_back(std::pair<int, std::string>(1,"hello"));

as opposed to

    l = [(1, 'hello')]

?

I like your definition :-)



More information about the Python-list mailing list