Re: Numeric Literals (Summary 3)
> Date: Wed, 20 Nov 2002 10:54:18 -0800 > From: Michael Lazzaro <[EMAIL PROTECTED]> > > exponential notation: > -1.23e4 # num > -1.23E4 # num (identical) > 1.23_e_4# wrong Lord Larry has ruled that _ can only appear between digits. I, for one, do not see the reasoning beh
Numeric Literals (Summary 3)
With the latest corrections: --- Numeric Literals --- decimal notation: 123 # int 123 0123 # int 123 123.0 # num 123.0 -123 # int -123 0_1.2_3 # ok _01.23 # wrong 01.23_ # wrong 01_._23 # wrong 1__2# wrong exponen