Notice
Recent Posts
Recent Comments
Link
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 letter or underscore (_)
*** 읽는 사람이 읽기 편하도록 변수명을 쉽게 짓는 것이 중요!
3. 할당문(Assignment Statements)
- You assign a value to a variable using the assignment statement (=)
- LEFT SIDE: A variable which is a memory location used to store a value
- RIGHT SIDE: An expression
강의 사이트
반응형
'PROGRAMMING::LANGUAGE > Python' 카테고리의 다른 글
〔백준/파이썬〕10869번 사칙연산 (0) | 2022.06.06 |
---|---|
〔모두를 위한 파이썬〕조건문(if, elif, else)과 예외처리(try, except) (0) | 2021.04.23 |
〔모두를 위한 파이썬〕연산자, 데이터 타입, 타입 변환 (0) | 2021.04.20 |
〔모두를 위한 파이썬〕예약어, 순차문, 조건문, 반복문 (0) | 2021.04.20 |
〔모두를 위한 파이썬〕네이버 부스트코스 <Python for Everybody> 수강 시작 | 라즈베리 파이, 하드웨어, 소프트웨어 (0) | 2021.04.20 |
Comments