from tkinter import * root=Tk() w=Canvas(root,width=600,height=600) w.pack() w0=300 h0=300 w.create_line(0,300,600,300,fill="red") w.create_line(300,0,300,600,fill="red") def x(t): x=80*(2sin(t)-sin(2t)) x+=w0 def y(t): y=80*(2cos(t)-cos(2t)) t=-pi whlie(t<pi): w.create_line(x(t),y(t),x(t+0.01),y(t+0.01),fill="blue") t+=0.01 root.mainloop()上述代码,在 w.create_line(x(t),y(t),x(t+0.01),y(t+0.01),fill="blue")上报错,如何修改
时间: 2023-07-31 17:03:52 浏览: 136
Python tkinter实现春节烟花效果demo.docx
在上述代码中,有两个错误:
1. "while" 的拼写错误,应该是 "while" 而不是 "whlie"。
2. 函数 x(t) 和 y(t) 中的正弦和余弦函数名字写错了,应该是 sin() 和 cos(),而不是 sin() 和 cos()。
在修改这些错误之后,代码应该是这样的:
```python
from tkinter import *
import math
root = Tk()
w = Canvas(root, width=600, height=600)
w.pack()
w0 = 300
h0 = 300
w.create_line(0, 300, 600, 300, fill="red")
w.create_line(300, 0, 300, 600, fill="red")
def x(t):
return 80 * (2 * math.sin(t) - math.sin(2 * t)) + w0
def y(t):
return 80 * (2 * math.cos(t) - math.cos(2 * t))
t = -math.pi
while t < math.pi:
w.create_line(x(t), y(t), x(t + 0.01), y(t + 0.01), fill="blue")
t += 0.01
root.mainloop()
```
这样就可以正确地绘制出心形曲线了。
阅读全文