Итак:
def Draw (x,y,sym): tochka='\033[{0};{1}H{2}'.format(x,y,sym) print(tochka) class Point: def __init__(self, x,y,sym): self.x=0 self.y=0 self.sym='' Draw (x,y,sym) p=Point(int(input('x: ')), int(input('y: ')), input('sym: '))
File "snake4.py", line 14, in <module> p=Point(int(input('x: ')), int(input('y: ')), input('sym: ')) File "<string>", line 1 = ^ SyntaxError: unexpected EOF while parsing
Как вводить без кавычек?

