1 2 3 4 5 6 7 8
from turtle import * a = Turtle() print('Введите радиус') n = int(input()) a.circle(n) a.left(180) a.circle(n) a.screen.mainloop()