이제 데이터 공부 안하는 블로그

상수 (constants) & 변수 (variable) 본문

파이썬

상수 (constants) & 변수 (variable)

공사노비 2020. 12. 8. 23:37

 

상수 (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이 들어가게 됨.