python画田字格
时间: 2023-12-11 07:33:24 浏览: 191
python打印由1中列表的内容构成一个“田”字格图形,长度可任意指定输入。
5星 · 资源好评率100%
以下是两种Python画田字格的例子:
1. 使用print()函数输出田字格
```python
# 田字格的输出
print("+-------+--------+")
for i in range(4):
print("| | |")
print("| | |")
print("| | |")
print("| | |")
print("+-------+--------+")
```
2. 使用字符串拼接输出田字格
```python
# 田字格的输出
a = " + "
b = " "
c = " - "
d = " | "
for i in range(11):
if i == 0 or i == 5 or i == 10:
print(a + 8 * c + b + a + 8 * c + b + a)
else:
print(d + 8 * b + d + 8 * b + d)
```
阅读全文