首页 > 代码库 > 标准输入到绘图过滤器(plotfilter.py)
标准输入到绘图过滤器(plotfilter.py)
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)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。