拜托大家帮我看看 到底是哪里出错了?

import turtle
import time
import random
while True:
	turtle.setup(width=200,height=450,startx=random.randint(0,1500),starty=random.randint(0,970)
	|这个地方为什么是无效语法
	v
	time.sleep(0.1)
turtle.done()

Python版本3.8,用的Notepad++编辑器

如下:(第5行最后少了一个括号)

import turtle
import time
import random
while True:
    turtle.setup(width=200,height=450,startx=random.randint(0,1500),starty=random.randint(0,970))
    time.sleep(0.1)
turtle.done()

 

少个括号 )