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")
来源:CSDN
作者:假正经张先生
链接:https://blog.csdn.net/Vickers_xiaowei/article/details/104165303