실험실페이지
Notices: 블럭 속의 텍스트에 대해 관심을 불러일으킵니다.
[공지사항]
지킬블로그 신규 업데이트 안내 드립니다. default
[공지사항]지킬블로그 신규 업데이트 안내 드립니다. primary
[공지사항]지킬블로그 신규 업데이트 안내 드립니다. info
[공지사항]지킬블로그 신규 업데이트 안내 드립니다. default
[공지사항]지킬블로그 신규 업데이트 안내 드립니다. info
[공지사항]지킬블로그 신규 업데이트 안내 드립니다. info
- 김밥
- 떡볶이
- 순대
- 참깨라면
- 짜빠구리
- 신라면
- 이불개기
- 청소하기
- 아침먹기
- 유즈카페
- 커피특별시
- 키아누카페
- 수소
- 헬륨
- 리튬
- 아메리카노
- 미숫가루
- 라임티
- 돈코츠라멘
- 미소라멘
- 열라면
’-‘: unordered list
- content-(1)
- content-(2)
- content-(3)
‘n’: ordered list
- content-(1)
- content-(2)
- content-(3)
emoji (이모지 적용 안됨, 해결책 찾을 것)
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
image

유튜브 동영상
quote(인용문)
> 이건 인용문이에요.
>> 이건 인용문 속 인용문이에요.
# x, y, z 변수에 값 1, 2, 3을 각각 저장
x, y, z = 1, 2, 3
print(x, y, z)
1 2 3
h1
h2
h3
h4
h5
h6
# Python program to find H.C.F of two numbers
# define a function
def compute_hcf(x, y):
# choose the smaller number
if x > y:
smaller = y
else:
smaller = x
for i in range(1, smaller+1):
if((x % i == 0) and (y % i == 0)):
hcf = i
return hcf
num1 = 54
num2 = 24
print("The H.C.F. is", compute_hcf(num1, num2))
코드를 감쌀 경우 백틱을 써서 감쌉니다.
# Python Program to find the L.C.M. of two input number
def compute_lcm(x, y):
# choose the greater number
if x > y:
greater = x
else:
greater = y
while(True):
if((greater % x == 0) and (greater % y == 0)):
lcm = greater
break
greater += 1
return lcm
num1 = 54
num2 = 24
print("The L.C.M. is", compute_lcm(num1, num2))
- Category: 포스팅의 주제에 대한 분류
- Tag: 포스팅에서 사용한 언어에 대한 분류(사용한 언어가 없을 경우, CS라고 분류)
<만약 여러="" 언어를="" 태깅할="" 경우=""> python과 c/cpp를 태깅할 경우: tags: [python, c/cpp] 만약>
인용문을 사용할 경우, 단축키 [ctrl + shift + Q]를 입력합니다.
저의 블로그 링크입니다.
Steve Jobs — Apple Worldwide Developers’ Conference, 1997
댓글남기기