맛집과 여행/Cook | 요리 이야기 복리의 마법사 2017. 7. 27. 17:08
황금계란볶음밥 :: 요리왕 비룡이 되어보자! 황금볶음밥 준비물 : 계란, 대파, 식용유, 소금 1. 밥 준비! 2. 계란 노른자, 흰자 분리! 3. 노른자만 밥이랑 섞어섞어~ 4. 밥에다가 식용유를 둘러주고 비벼준다~ 5. 파기름 낸 프라이팬에 밥을 볶아준다. 6. 간을 보며 싱거우면 소금 투척 7. 초간단 황금볶음밥 완성
더 읽기
카테고리 없음 복리의 마법사 2017. 7. 27. 15:35
[파이썬 정리노트] 파이썬에서의 if문 def print_grade(midterm, final): total = midterm + final if total > 90: print("You get an A") elif total > 80: print("You get an B") elif total > 70: print("You get an C") elif total > 60: print("You get an D") else: print("You fail") print_grade(40, 45)print_grade(20, 35)print_grade(30, 32)print_grade(50, 45) -------------------------------------------- i = 1 while i < 100..
카테고리 없음 복리의 마법사 2017. 7. 25. 23:11
The simple fact is the men in this family have always had the ability to... This is going to sound strange, be prepared for strangeness. Get ready for spooky time, but there's this family secret. And the secret is that the men in this family can travel in time.
카테고리 없음 복리의 마법사 2017. 7. 25. 22:51
[jQuery 정리노트] 5. jQuery animate() 1. 이번수업의 목적- jQuery의 .animate() 구문을 이용하여 특정 요소의 css속성값에 변화를 주어 모션을 실행하는 법을 학습합니다. 2. 핵심개념- animate() 구문에서 시간과 가속도 설정하기 (easing.js)- animate() 구문의 모션 중첩을 제거하는 .stop() 구문- animate() 구문에서 특정모션이 끝난직 후, 새로운모션을 연결해서 실행시켜주는 콜백함수[출처] .animate() -필수구문21|작성자 하다보니 구글에 easing.js 검색해서 easeOutBounce와 같은 효과를 찾아서 확인할 수가 있다. ----------------------------------------- $(document)...
카테고리 없음 복리의 마법사 2017. 7. 25. 18:34
8.파이썬에서의 while문 -----------------i = 2 while i
카테고리 없음 복리의 마법사 2017. 7. 25. 18:14
def is_evenly_divisible(number): # 코드를 작성하세요 return(number % 2 == 0) print(is_evenly_divisible(3))print(is_evenly_divisible(7))print(is_evenly_divisible(8))
카테고리 없음 복리의 마법사 2017. 7. 25. 17:58
[파이썬 정리노트] 6.Return문과 전역, 지역변수 1. Return문함수 호출 부분(function call)을 return문 뒤에 오는 값으로 대체.현재 함수의 실행을 멈추고 함수가 호출된 지점으로 돌아가서 진행. 2. 전역변수, 지역변수 1) 전역변수- 전체 코드에서 사용할 수 있는 변수 2) 지역변수- 함수에서만 사용할 수 있는 변수- 지역변수가 설정된 이의외 함수에서 사용했을 시 변수의 역할을 하지 못한다. 3. 상수 - 프로그램이 끝날때까지 같은 값을 가지고 있는 것, 처음부터 끝까지 바뀌지 않는 값.- 대문자로 설정한 변수
카테고리 없음 복리의 마법사 2017. 7. 24. 16:45
This is an odd moment for me. Because I had the same momment with my father when I just turned 21, and after it, My life was never the same , so I approached it pretty nervously.