Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 파이썬인강
- 파이썬기초
- 미국디리스킹
- 중국수출통제
- 셀레니움
- SQL
- swift문법
- 순천여행
- MBTI성격유형
- 파이썬온라인수업
- 광교카페
- 비트코인
- 노르웨이기준금리
- 비전공자파이썬
- 파이썬문법
- 파이썬독학하기
- 패스트캠퍼스후기
- 파이썬클래스
- 파이썬독학
- 파이썬배우기
- 파이썬강의
- 스크래핑
- 패스트캠퍼스수강후기
- 파이썬강의후기
- 파이썬수업
- MBTI성격검사
- MBTI
- 암호화폐
- 파이썬 인강
- 스위스기준금리
Archives
- Today
- Total
이제 데이터 공부 안하는 블로그
상수 (constants) & 변수 (variable) 본문
상수 (constants) & 변수 (variable)
상수 (Constants) : 변하지 않는 값
- Fixed values such as numbers, letters, and strings, are called “constants” because their value does not change.
- Numeric constants are as you expect
- Sting constants use single quotes (‘) or double quotes (“)
>>> print(123)
123
>>> print(98.6)
98.6
>>> print(‘Hello world’)
Hello world
예약어 (Reserved words) : 컴퓨터 프로그래밍 언어에서 이미 문법적인 용도로 사용되고 있기 때문에 식별자로 사용할 수 없는 단어들
- You cannot use reserved words as variable names / identifiers
변수 (Variables)
- A variable is a named place in the memory where a programmer can store data and later retrieve the data using the variable “name”
- Programmers get to choose the names of the variables
- You can change the contents of a variable in a later statement
x = 12.2
x 라는 변수에 12.2의 값을 넣어준 것
y = 14
y 라는 변수에 14의 값을 넣어준 것
x = 12.2
y = 14
x = 100
만약 밑에 줄에 x = 100 을 추가한다면 순차적으로 값을 읽기 때문에 x 라는 변수에는 최종적으로 100이 들어가게 됨.
'파이썬' 카테고리의 다른 글
[파이썬 기초] 딕셔너리 (del, list, sorted, in, not in, dict, items) (0) | 2021.09.16 |
---|---|
파이썬 클래스, 인스턴스, 메소드, 모듈 이해하기 (0) | 2020.12.20 |
패스트캠퍼스 파이썬 웹 개발 올인원 패키지 챌린지 참여 후기 (0) | 2020.12.08 |
[패스트캠퍼스 수강 후기] 파이썬 인강 100% 환급 챌린지 28회차 미션 (0) | 2020.11.29 |
[패스트캠퍼스 수강 후기] 파이썬 인강 100% 환급 챌린지 27회차 미션 (0) | 2020.11.28 |