SejongClass
Youtube
Github
Blog
계속하기
🚀 새로운 학습 패러다임
Code Your
Life
with
Math & Physics
종이와 연필을 넘어 새로운 학습 경험.
Start learning
Python Interactive
# 이차방정식을 시각화해보세요
import
numpy
as
np
import
matplotlib.pyplot
as
plt
x = np.
linspace
(-10, 10, 100)
y = x**2 - 4*x + 3
plt.
plot
(x, y,
'b-'
, linewidth=2)
plt.
grid
(
True
, alpha=0.3)
plt.
show
()
✓
실행 완료 - 그래프가 생성되었습니다!
Start learning
Youtube
Github
Blog