6. 输出如下图所示的字符、 数字金字塔
s = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I']for i in range(len(s)):for j in range(8 - i):print(' ', end='')print((s[len(s) - i - 1]) * 2 * (i + 1))print()for i in range(9):for j in range(8 - i):print(' ', end='')print(str(9 - i) * 2 * (i + 1))
7. 绘制随机大小、随机位置、随机颜色的爱心 。
colors = ['purple', 'red', 'pink', 'blue', 'green', 'pink', 'white', 'orange', 'yellow']import turtle as timport randomfor i in range(20):t.seth(45)color = colors[random.randint(0, len(colors) - 1)]t.fillcolor(color)t.penup()x = random.randint(-500, 500)y = random.randint(-300, 300)t.goto(x, y)r = random.randint(1, 360)t.right(r)t.pendown()t.begin_fill()a = random.randint(30, 150)t.circle(0 - a, 180)t.fd(2 * a)t.right(90)t.fd(2 * a)t.circle(0 - a, 180)t.end_fill()t.penup()t.done()
- 二 Python题目练习
- Python攻城的成长————网络编程
- 『python爬虫』26
- Python工具开发:PDF转Word、Word转PDF、PDF转图片、Exce
- 怎么练习英语听力 中学生英语听力练习
- 第一种手动实现, 第二种导入库实现 python数据分析的回归方程的简单讲解
- Python3安装完全攻略 Mac篇
- Mac安装python3完整教程
- Python是个什么鬼?为什么建筑设计都要学它?
- python静态代码检查工具 vscode中对flake8和yapf(pyth