python趣题

谁都会走 提交于 2020-02-07 08:03:49

1. 用turtle模块画奥运五环

import turtle
t = turtle.Pen()

t.width(8)

t.color('blue')
t.circle(50)

t.penup()
t.forward(130)
t.pendown()

t.color('black')
t.circle(50)

t.penup()
t.forward(130)
t.pendown()

t.color('red')
t.circle(50)

t.penup()
t.goto(66,-50)
t.pendown()

t.color('yellow')
t.circle(50)

t.penup()
t.forward(130)
t.pendown()

t.color('green')
t.circle(50)

在这里插入图片描述

2. 生成二维吗

需要依赖第三至少两个第三方库,依次安装即可:

pip install Image
pip install qrcode

代码很简单

import qrcode
qrcode.make("张威真帅").save("./test.png")

在这里插入图片描述

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!