test2

아래는 예제 front matter
---
title: "Welcome to Jekyll!"
date: 2017-10-20 08:26:28 -0400
# categories: jekyll update
---

Jekyll test!

실시간 반영 테스트 실시간 반영 테스트r 실시간 반영 테스트ddd실시간 반영 테스트ddd실시간 반영 테스트ddd실시간 반영 테스트ddd실시간 반영 테스트ddd실시간 반영 테스트ddd실시간 반영 테스트ddd ㅏㄴ안안안안성진 ㅓㅑㅝㅑㅝㅑㅝㅑsdㅇㄹㅇㄴㄹㄴㅇㄹㄴㅇㄹㄴㅇ랴재테스트 — 테스트

여기여기 여기여기

여기어기 끝

# Solve the quadratic equation ax**2 + bx + c = 0

# import complex math module
import cmath

a = 1
b = 5
c = 6

# calculate the discriminant
d = (b**2) - (4*a*c)

# find two solutions
sol1 = (-b-cmath.sqrt(d))/(2*a)
sol2 = (-b+cmath.sqrt(d))/(2*a)

print('The solution are {0} and {1}'.format(sol1,sol2))

CleanShot 2023-04-17 at 00.11.19@2x

Leave a comment