import turtle as t
import time
# x, y축 그리기
t.pendown()
t.goto(0, 1000)
t.goto(0,0)
t.goto(1000,0)
t.penup()
# 준비
x, y = 1, 1
x += 1
y = 400 // x
t.goto(x, y)
t.pendown()
# 그래프 그리기
for i in range(600):
t.goto(x, y)
x += 1
y = 2000 // x
print(x, y)
반응형
'코딩 > Python' 카테고리의 다른 글
파이썬 windows 유저 이름 얻기 (0) | 2021.03.06 |
---|---|
활성화된 창 찾기 (0) | 2021.03.01 |
Python - Flask - Request (0) | 2021.02.21 |
Python - Tkinter - Label (0) | 2021.02.14 |
Python - PIL - ImageGrab (0) | 2021.02.14 |