[issue35188] something confused about numpy.arange

2018-11-08 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> third party ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35188] something confused about numpy.arange

2018-11-08 Thread xiyunlong
Change by xiyunlong : -- stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35188] something confused about numpy.arange

2018-11-08 Thread xiyunlong
New submission from xiyunlong : when I use:print(np.arange(1,2.2,0.2)) I got: 1.0 1.2 1.4 1.5999 1.7998 1.9998 2.1997 could any one tell me why it's not 1.0,1.2,1.4,1.6,1.8,2.0? Many thanks! -- components: Library (Lib) messages: 329466