[Edu-sig] RE: PEP0238 lament
by Bjorn Pettersen other posts by this author
Jul 23 2001 11:30PM messages near this date
[Edu-sig] Re: PEP0238 lament
|
[Edu-sig] Re: PEP0238 lament
> From: Paul Prescod [mailto:paulp@[...].com]
>
> This issue is constantly presented as some sort of dichotomy between
> "regular" programmers" and newbies. But really it is more of a
> dichotomy between those originally trained on typed languages and
> those on dynamically typed languages.
>
> The other languages in the Python category (Perl, Ruby,
> JavaScript, ...)
> all make a different choice for division and the choice is
> uncontroversial. Python is the only one of the languages that has a
> constant battle on the issue.
Ruby seems to be quite in line with (current) Python:
irb(main):001:0> puts 1/2
0
nil
irb(main):002:0> puts 1.0/2
0.5
nil
irb(main):003:0>
-- bjorn
_______________________________________________
Edu-sig mailing list
Edu-sig@[...].org
http://mail.python.org/mailman/listinfo/edu-sig
|