본문 바로가기
카테고리 없음

파이썬 단기 집중과정

by Saans 2022. 1. 27.

파이썬 단기 집중과정 Coursera X Google

 

Syntax _The rules for how each instruction is written

Semantics _The effect the instructions have

Script _A program that's short, simple, and can be written very quickly

Automation _The process of replacing a manual step with one that happens automatically

Python interpreter _The program that reads what's in the recipe and translates it into instructions for your computer to follow

 

아래에서 가장 인기 있는 온라인 인터프리터 및 코드패드에 대한 링크를 찾을 수 있습니다. 가장 마음에 드는 것을 찾으러 가십시오.

추가 파이썬 리소스

이 과정은 파이썬이 작동하는 방식과 파이썬에서 스크립트를 작성하는 방법에 대한 정보를 제공하지만 언어의 특정 부분에 대해 더 알고 싶을 것입니다. 다음은 추가 정보를 찾는 데 도움이 되는 몇 가지 좋은 방법입니다. 

  • 공식 파이썬 문서를 읽으십시오.
  • 스택 오버플로우에서 답변을 검색하거나 질문하십시오. 
  • 질문을 하고 다른 파이썬 학습자와 협력할 수 있는 파이썬 튜터 메일링 리스트를 구독하십시오.
  • Python-announce 메일링 리스트를 구독하여 언어의 최신 업데이트에 대해 읽으십시오.

파이썬 역사 및 현재 상태

파이썬은 거의 30년 전에 출시되었으며 풍부한 역사를 가지고 있습니다. 파이썬의 역사 위키백과 페이지 또는 공식 파이썬 문서의 소프트웨어의 역사 섹션에서 확인할 수 있습니다.

파이썬은 최근 가장 빠르게 성장하는 프로그래밍 언어로 불립니다. 이것이 왜 그리고 어떻게 측정되는지에 관심이 있다면 다음 기사에서 더 자세히 알아볼 수 있습니다.

Functions _ Pieces of code that perform a unit of work

Keywords _Reserved words that are used to construct instructions  if, while, for

 

Built-in Functions — Python 3.10.2 documentation

 

String _Known as a "data type"

 

피그마

 

Variables _Names that we give to certain values in our programs

Assignment _The process of storing a value inside a variable

Expression _ A combination of numbers, symbols, or other variables that produce a result when evaluated

Implicit conversion _The interpreter automatically converts one data type into another

Variables, Values, Expressions, Conversions

 

Code style

Self-documenting code _Written in a way that's readable and doesn't conceal its intent

#Comment

댓글