Skip to content

Python #
Find similar titles

Structured data

About
Programming language
Alternate Name
파이썬
Image
URL

객체지향(Object-oriented) 동적형결정(Dynamic typing) 명령행 해석방식(Interpreter) 프로그램 언어 파이썬

#

In MS-Windows #

윈도우즈에서도 pip로 3rd-party 모듈을을 잘 설치해 쓸 수 있다. 다만 C확장모듈인 경우, Visual C++ 2010 Express가 필요하다. (회원가입 후 무료 사용 가능)

SciPy의 경우, 별도의 C 라이브러리(BLAS, LAPACK 등)가 필요하기에 다소 번거롭다. 이 경우, Anaconda를 써서 관련 프로그램들을 일괄 설치해 쓸 수 있다.

사용자 홈디렉토리 #

사용자 홈디렉토리를 가져오는 방법

#!python
try: ## for python 3.4+
    from pathlib import Path
    home = str(Path.home())
except:
    from os.path import expanduser
    home = expanduser("~")

관련 링크 #

초심자용 #

중급자용 #

특별한 강좌들 #

프로그래밍 팁 #

과학연산 #

기타 유용한 글 #

중요한 라이브러리 #

Builtin

3rd-party

Incoming Links #

Related Social Events #

Related Countries #

[Codes] About #

Related Blogs #

[Blogs] About #

Related Software Applications #

Related Books #

Related People #

Related Articles #

Related Education Events #

[Books] About #

Codes Written #

Related Corporations #

Related Codes #

Related Web Applications #

Suggested Pages #

web biohackers.net
0.0.1_20140628_0