用Python代码写一个屏幕爱心
时间: 2023-05-16 21:07:38 浏览: 100
使用python绘制爱心源码
以下是Python代码,可以在屏幕上打印出一个爱心:
```python
import math
def print_heart():
for y in range(15, -15, -1):
for x in range(-30, 30):
if math.pow(math.pow(x * 0.04, 2) + math.pow(y * 0.1, 2) - 1, 3) - math.pow(x * 0.04, 2) * math.pow(y * 0.1, 3) <= 0:
print("*", end="")
else:
print(" ", end="")
print()
print_heart()
```
希望能帮到你!
阅读全文