码迷,mamicode.com
首页 > 其他好文 > 详细

标准输入到绘图过滤器(plotfilter.py)

时间:2017-08-03 14:53:04      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:bsp   points   sem   class   show   empty   技术   div   poi   

 1 import stddraw
 2 import stdio
 3 # Read and set the x- and y- scales
 4 x0 = stdio.readFloat()
 5 y0 = stdio.readFloat()
 6 x1 = stdio.readFloat()
 7 y1 = stdio.readFloat()
 8 stddraw.setXscale(x0, x1)
 9 stddraw.setYscale(y0, y1)
10 # Read and plot the points
11 stddraw.setPenRadius(0.0)
12 while not stdio.isEmpty():
13     x = stdio.readFloat()
14     y = stdio.readFloat()
15     stddraw.point(x, y)
16 stddraw.show()

技术分享

 

 技术分享

 

标准输入到绘图过滤器(plotfilter.py)

标签:bsp   points   sem   class   show   empty   技术   div   poi   

原文地址:http://www.cnblogs.com/cdf4745/p/7279316.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!