python趣题

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)

python趣题

2. 生成二维吗

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

pip install Image
pip install qrcode

代码很简单

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

python趣题

python趣题python趣题 假正经张先生 发布了135 篇原创文章 · 获赞 51 · 访问量 6万+ 私信 关注
上一篇:520要来啦,快去给心仪的她写表白代码趴!(python)


下一篇:使用turtle库绘制同心圆