Love Every Moment

〔모두를 위한 파이썬〕네이버 부스트코스 <Python for Everybody> 수강 시작 | 라즈베리 파이, 하드웨어, 소프트웨어 본문

PROGRAMMING::LANGUAGE/Python

〔모두를 위한 파이썬〕네이버 부스트코스 <Python for Everybody> 수강 시작 | 라즈베리 파이, 하드웨어, 소프트웨어

해 송 2021. 4. 20. 14:22
반응형

 

1. 모두를 위한 파이썬(Python for Everybody)

 

Michigan 대학의 Charles R. Severance 교수가 진행하는 모두를 위한 파이썬 강의를 수강하기 시작했다.

해당 강의는 네이버 부스트코스를 비롯해 코세라(Coursera), EDX 등에서 수강할 수 있다.

 

 

모두를 위한 파이썬 (PY4E)

부스트코스 무료 강의

www.boostcourse.org

 

PY4E - Python for Everybody

Python for Everybody This web site is building a set of free materials, lectures, book and assignments to help students learn how to program in Python. You can take this course and receive a certificate at: If you log in to this site you have joined a free

www.py4e.com

 

 


 

 

출처: https://www.extremetech.com/computing/223769-raspberry-pi-3-launches-with-faster-64-bit-processor-and-wi-fi-for-the-same-35 

 

 

2. 하드웨어와 소프트웨어

 

(1) CPU(Central Processing Unit / Micro Processing Unit)

  • Runs a program
  • They ask "What do I do next?"
  • They're not really smart, but very fast
  • CPU takes data from the Main Memory

 

(2) 메인 메모리(Main Memory)

  • 적은 양의 정보를 저장하는 장치
  • 속도는 매우 빠르지만 컴퓨터를 종료하면 사라지는 휘발성 메모리
  • Feeds the instructions to CPU
  • Where instructions are stored

 

(3) 입력 장치(Input Devices)

  • 사람에 의해 정보를 입력받는 기기
  • ex) 키보드, 마우스, 터치 스크린

 

(4) 출력 장치(Output Devices)

  • 처리된 정보의 결과를 보여주는 기계
  • ex) 화면, 스피커, 프린터, DVD 기록기

 

(5) 보조 기억장치(Secondary Storage)

  • 지우지 않는 이상 정보를 계속해서 가지고 있음
  • ex) SDD, HDD
  • Hard Drive: Secondary Storage
  • Secondary storage gets plugged in by USB on Raspberry Pi

 


 

 

 

 

1. CPU asks "What's next?"

2. You answer by writing code (ex. print("Hello World")), which is saved in Secondary Storage

3. It's loaded into Main Memory when you have to answer the question "What's next?"

4. print("Hello World") is translated into Machine Code and loaded into Main Memory

5. The machine languaged is sent back and forth between CPU and Main Memory

 

 


 

 

라즈베리 파이에 관해 더욱 자세한 설명 참고: 

 

[라즈베리 파이] 라즈베리 파이 란?

개인 클라우드 용도부터 카메라,게임기까지 활용하기에 따라 다양하게 사용될 수 있는 라즈베리 파이에 대해 알아보겠습니다. 라즈베리 파이 (Raspberry Pi) 란?  라즈베리 파이(Raspberry Pi)는 영국

noahlogs.tistory.com

 

* 파이썬 개념 정리한 사이트

 

점프 투 파이썬

** 점프 투 파이썬 오프라인 책(개정판) 출간 !! (2019.06) ** * [책 구입 안내](https://wikidocs.net/4321) 이 책은 파이썬 ...

wikidocs.net

 

반응형
Comments