변수 선언, 변수에 담겨 있는 값 변경하기
CODEDRAGON ㆍDevelopment/Python
반응형
변수 선언
변수에 값을 대입하여 변수를 선언해 줍니다.
변수명 = 변수에 저장할 값 |
>>> a = 10 >>> print (a + 5) 15 >>> b = 20 >>> print ( b + 5) 25 >>> print (a + b) 30 |
변수에 담겨 있는 값 변경하기
>>> n = 50 >>> print (n) 50 >>> m = 60 >>> print (m) 60 >>> print ( n+m) 110 >>> print (n) 50 >>> n = 100 >>> print (n+m) 160 >>> print (n) 100
|
변수의 값으로 숫자 및 문자를 비롯한 다양한 자료형이 올 수 있습니다.
>>> str = "python" >>> print (str) python >>> print ("I love " + str) I love python >>> str1, str2 = 'My', 'Python' >>> print (str1) My >>> print (str2) Python >>> print (str1 + str2) MyPython |
'Development > Python' 카테고리의 다른 글
조건문 (0) | 2019.11.29 |
---|---|
파이썬의 내장 자료형 (0) | 2019.11.29 |
geopandas 설치시 에러 해결방법 - Complete output (1 lines): A GDAL API version must be specified. Provide a path to gdal-config using a GDAL_CONFIG environment variable or use a GDAL_VERSION environment variable. ERROR: Command errored out with.. (0) | 2019.11.29 |
geopandas installing with pip (0) | 2019.11.28 |
XML vs CSV (0) | 2019.11.27 |