2505 김준호 작품 보고서 |
|||||
---|---|---|---|---|---|
작성자 | 학생과제 | 등록일 | 19.12.26 | 조회수 | 99 |
첨부파일 |
|
||||
1차 함수 그래프 import turtle as t
def line(x1, y1, x2, y2): t.up() t.goto(x1, y1) t.down()
t.goto(x2,y2)
return
t.setworldcoordinates(-50, -1000, 50, 1000) t.speed(0) t.hideturtle()
line(0, -1000, 0, 1000) line(-50, 0, 50, 0)
t.color("green") t.up() x=-50 y=50*x-200 t.goto(x,y) t.down() for x in range(-50,51): y=50*x-200 t.goto(x,y)
2차 함수 그래프 import turtle as t
def line(x1, y1, x2, y2): t.up() t.goto(x1, y1) t.down() t.goto(x2,y2)
return
t.setworldcoordinates(-50, -1000, 50, 1000) t.speed(0) t.hideturtle()
line(0, -1000, 0, 1000) line(-50, 0, 50, 0)
t.color("red") t.up() x=-50 y=x**2-2*x-500 t.goto(x,y)
t.down() for x in range(-50,51): y=x**2-2*x-500 t.goto(x,y)
3차 함수 그래프 import turtle as t
def line(x1, y1, x2, y2): t.up() t.goto(x1, y1) t.down() t.goto(x2,y2)
return
t.setworldcoordinates(-50, -1000, 50, 1000) t.speed(0) t.hideturtle()
line(0, -1000, 0, 1000) line(-50, 0, 50, 0)
t.color("blue") t.up() x=-100 y=x**3+5**2-100*x-500 t.goto(x,y)
t.down() for x in range(-100,101): y=x**3+5**2-100*x-500 t.goto(x,y)
|
이전글 | 20425이현규 |
---|---|
다음글 | 2507 라용대 작품 제출 |