PythonChallenge第9题

点击题目链接
1.页面图片上面有好多点
2.页码源码,上面说链接这些点,下面给了first,second。
3.下面怎么玩?
根据给的图片,在这个图片上,把上面的两个点集连起来看看是什么。

import ImageDraw

filename="F:/python/good.jpg"
im=Image.open(filename)

draw=PIL.ImageDraw.Draw(im)
draw.line(first,fill='Red',width=10)
draw.line(second,fill='Red',width=10)
im.show()

PythonChallenge第9题_第1张图片
进入:cow.html
显示:hmm. it’s a male.
bull.html进入下一题
卧槽,这一题的图片上面两个牛

你可能感兴趣的:(python,draw,py挑战)