Development/Python(797)
-
조건문
조건문 · 조건문은 참과 거짓을 판단하는 문장을 의미합니다. · 주어진 조건을 판단한 후 그 상황에 맞게 처리해야 할 경우 사용합니다. · 조건문을 사용하면 주어진 조건의 결과에 따라서 프로그램을 다르게 동작할 수 있도록 만들 수 있습니다. · Python은 if문만 제공합니다. 조건문 종류 · if문
-
파이썬의 내장 자료형
파이썬의 내장 자료형 · 파이썬은 자주 사용하는 자료구조를 내장하고 있습니다. · 언어 내장의 기본 자료구조, 즉, 내장 자료형을 제공하고 있어 편리하고 강력합니다. · 파이썬의 내장 자료형에는 수치형, 문자열, 리스트, 튜플, 사전자료형이 있습니다. · 리스트, 튜플, 사전자료형은 컨테이너(집합체 형태) 저장모델을 가지고 있으며 다양한 장점을 가지고 있습니다.
-
변수 선언, 변수에 담겨 있는 값 변경하기
변수 선언변수에 값을 대입하여 변수를 선언해 줍니다. >>> a = 10 >>> print (a + 5) 15 >>> b = 20 >>> print ( b + 5) 25 >>> print (a + b) 30 변수에 담겨 있는 값 변경하기 >>> 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
-
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..
오류메시지 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 exit status 1: python setup.py egg_info Check the logs for full command output. C:\CodeLab>pip install geopandas Collecting geopandas Downloading https://files.pythonhosted.org/pac..
-
geopandas installing with pip
geopandas installing with pip · 파이썬 버전 확인 · 운영체제 OS bit 버전 확인 · whl파일 다운로드 · whl파일 설치 파이썬 버전 확인 C:\CodeLab>python --version Python 3.6.5 C:\CodeLab> 운영체제 OS bit 버전 확인 C:\CodeLab>systeminfo | findstr based 시스템 종류: x64-based PC C:\CodeLab> whl파일 다운로드 https://www.lfd.uci.edu/~gohlke/pythonlibs/#fiona Fiona‑1.8.11‑cp36‑cp36m‑win_amd64.whl https://www.lfd.uci.edu/~gohlke/pythonlibs/#shapely Shapely‑1..
-
XML vs CSV
XML vs CSVCSV 특징입니다.