목록모두를위한파이썬 (11)
Love Every Moment
1. 상수(Constants) Fixed values such as numbers, letters, and strings Their value does not change String constants use single quotes(') or double quotes(") 2. 변수(Variables) A named place in the memory where a programmer can store data and later retrieve the data using the variable "name" You can change the the contents of a variable in a later statement VARIABLE NAME RULES: Must start with a lette..
컴퓨터 프로그래밍 코딩 교육 1. 예약어(Reseverd Word) You cannot use Reserved Words as variable names / identifiers ex) True, False, class, return, is, finally, none, if, else, for, while, continue, def, from, and, not, or, ... x = 2 ← Assignment statement x = x + 2 ← Assignment with expression print(x) ← Print statement x : 변수(Variable) = : 연산자(Operator) 2 : 상수(Constant) print() : 예약어(Reserved Word) 2. Program..
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 ..