기본 콘텐츠로 건너뛰기

벡터와 행렬에 관련된 그림들

파일 관리

내용

파일 관리

os 모듈

파이썬의 os 모듈을 사용하여 디렉토리(directory)를 조정할 수 있습니다.

함수 내용
getcwd() 현재 인터프리터가 작동되고 있는 디렉토리(Current Working Directory)를 나타냄, 문자열 형식
getcwdb() getcwd()와 동일하지만 bytes 형식으로 반환
chdir() 현재 working directory를 다른 디렉토리로 변경
listdir() working directory의 모든 하위디렉토리와 파일의 목록을 반환
mkdir() 지정된 경로에 새로운 디렉토리를 생성. 경로를 지정하지 않으면 working directory에 생성
rename(이름, 교체할 이름) 디렉토리의 이름을 교체
remove() 파일을 삭제
rmdir() 빈 디렉토리를 제거
import os
​
os  #모듈의 경로 반환
<module 'os' from 'C:\home\~\anaconda3\lib\os.py'>
#getcwd()
current=os.getcwd();current
'/home/~/python_programming'
type(current)
str
current2=os.getcwdb(); current2
b'/home/~/\xeb\xac\xb8\xec\x84\x9c/python_programming'
type(current2)
bytes
#chdir()
os.chdir("/home/~/문서")
os.getcwd()
'/home/~/문서'
#listdir()
os.getcwd()
'/home/~/python_programming'
os.listdir()
['python_programming_eng.epub',
'__pycache__',
...
'polymorphism.py',
'test1.txt']
#mkdir()
 os.getcwd()
'/home/~/test'
os.listdir()
[]
os.mkdir('subtest')
os.listdir()
['subtest']
#rename()
os.rename("subtest", "newTest")
os.listdir()
['newTest']
#remove(), rmdir()
os.listdir()
['test.txt']
os.remove("test.txt")
os.listdir()
[]
os.chdir('/~/test')
os.listdir()
['newTest']
os.rmdir("newTest")
os.listdir()
[]

rmdir()은 빈 디렉토리에서만 작동됩니다. 디렉토리내에 하위 디렉토리나 파일이 존재할 경우 이 명령은 예외를 발생시킵니다.

try:
 os.rmdir('test1')
except:
 print("내부에 내용물이 있으므로 삭제되지 않았습니다.")
내부에 내용물이 있으므로 삭제되지 않았습니다. 

os.path 모듈

os 모듈내에 있는 하위모듈로서 파일이나 폴더에 대한 정보를 알려줍니다.

함수내용
isdir() 지정된 이름이 폴더인지를 판단하여 True/False반환
지정된 이름의 폴더가 없어도 False, 그 이름이 파일이라도 False를 반환
isfile() isdir()과 유사하지만 폴더가 아닌 파일인지를 판단
exists() 파일이나 폴더가 존재하는가를 판단
getsize() 파일의 크기를 반환(byte단위로 표시), 폴더의 크기는 반환하지 못함
split() 파일과 폴더의 경로를 구분해 주는 함수
경로 중의 마지막에 존재하는 것을 분리
splitext()마지막 파일의 확장명을 따로 분리하여 반환
마지막이 폴더일 경우 분리되지 않음
join() 파일이름과 폴더 이름을 합쳐주는 함수
dirname() 경로의 폴더만을 분취하여 나타내는 함수
basename() 경로에서 파일만을 분취하여 나타내는 함수
os.path.isdir('reg_fig')
True
os.path.isdir('test.db')
False
os.path.isfile('test.db')
True
os.path.exists('test')
False
os.path.exists('test.db')
True
os.path.getsize('function_names.xlsx')
19037
os.path.getsize('c:/python')
4096
os.path.split("C:\\Users\\~\\~\\python_web\\sys_os_module.ipnyb")
 ('C:\\Users\\~\\~\\python_web', 'sys_os_module.ipnyb')
os.path.split("C:\\Users\\~\\~\\python_web\\reg_fig")[1]
'reg_fig'
os.path.splitext("C:\\Users\\~\\~\\python_web\\sys_os_module.ipnyb")
 ('C:\\Users\\~\\~\\python_web\\sys_os_module', '.ipnyb')
os.path.splitext("C:\\Users\\~\\~s\\python_web\\reg_fig")
 ('C:\\Users\\~\\~\\python_web\\reg_fig', '')
x=os.path.split("C:\\Users\\~\\~\\python_web\\sys_os_module.ipnyb")
os.path.join(x[0], x[1])
'C:\\Users\\~\\~\\python_web\\sys_os_module.ipnyb'
#폴더만을 분취하여 나타냄
os.path.dirname("C:\\Users\\~\\~\\python_web\\sys_os_module.ipnyb")
'C:\\Users\\~\\~\\python_web'
#파일이름을 분취하여 나타냄
os.path.basename("C:\\Users\\~\\~\\python_web\\sys_os_module.ipnyb")
'sys_os_module.ipnyb'

sys 모듈

설치된 파이썬에 대한 많은 정보들은 sys 모듈을 사용하여 확인할 수 있습니다. 빈번히 사용되는 함수들은 다음과 같습니다.

함수 내용
sys.builtin_module_namesimport의 명령없이 사용할 수 있는 내장 모듈을 확인
sys.path 모듈을 찾을 특정경로를 보여줌
sys.path.append 모듈을 이용하여 모듈을 찾을 경로를 첨가할 수 있다.
예) sys.path.append('/foo/bar') 이러한 경로 첨가는 PYTHONPATH 환경변수를 설정하는 것과 거의 동일하다.
import sys
sys.modules['os']
<module 'os' from 'C:\\Users\\~\\Anaconda3\\lib\\os.py'>
sys.builtin_module_names
('_abc',
'_ast',
&vellips;
'itertools',
'marshal',
'math',
&vellips;
'sys',
'time',
'winreg',
'xxsubtype',
'zlib')
sys.path
['C:\Users\~\anaconda3\python39.zip',
&vellips;
'C:\Users\~\anaconda3\lib\site-packages\win32\lib',
'C:\Users\~\anaconda3\lib\site-packages\Pythonwin']
sys.path.append('C:\\Users\\~\\~\\note\\python\\산책')
sys.path
['C:\Users\~\~\note\python\산책',
'C:\Users\~\anaconda3\python39.zip',
&vellips;
'C:\Users\~\anaconda3\lib\site-packages\win32\lib',
'C:\Users\~\anaconda3\lib\site-packages\Pythonwin']

댓글

이 블로그의 인기 게시물

[Linear Algebra] 유사변환(Similarity transformation)

유사변환(Similarity transformation) n×n 차원의 정방 행렬 A, B 그리고 가역 행렬 P 사이에 식 1의 관계가 성립하면 행렬 A와 B는 유사행렬(similarity matrix)이 되며 행렬 A를 가역행렬 P와 B로 분해하는 것을 유사 변환(similarity transformation) 이라고 합니다. $$\tag{1} A = PBP^{-1} \Leftrightarrow P^{-1}AP = B $$ 식 2는 식 1의 양변에 B의 고유값을 고려한 것입니다. \begin{align}\tag{식 2} B - \lambda I &= P^{-1}AP – \lambda P^{-1}P\\ &= P^{-1}(AP – \lambda P)\\ &= P^{-1}(A - \lambda I)P \end{align} 식 2의 행렬식은 식 3과 같이 정리됩니다. \begin{align} &\begin{aligned}\textsf{det}(B - \lambda I ) & = \textsf{det}(P^{-1}(AP – \lambda P))\\ &= \textsf{det}(P^{-1}) \textsf{det}((A – \lambda I)) \textsf{det}(P)\\ &= \textsf{det}(P^{-1}) \textsf{det}(P) \textsf{det}((A – \lambda I))\\ &= \textsf{det}(A – \lambda I)\end{aligned}\\ &\begin{aligned}\because \; \textsf{det}(P^{-1}) \textsf{det}(P) &= \textsf{det}(P^{-1}P)\\ &= \textsf{det}(I)\end{aligned}\end{align} 유사행렬의 특성 유사행렬인 두 정방행렬 A와 B는 'A ~ B' 와 같...

[sympy] Sympy객체의 표현을 위한 함수들

Sympy객체의 표현을 위한 함수들 General simplify(x): 식 x(sympy 객체)를 간단히 정리 합니다. import numpy as np from sympy import * x=symbols("x") a=sin(x)**2+cos(x)**2 a $\sin^{2}{\left(x \right)} + \cos^{2}{\left(x \right)}$ simplify(a) 1 simplify(b) $\frac{x^{3} + x^{2} - x - 1}{x^{2} + 2 x + 1}$ simplify(b) x - 1 c=gamma(x)/gamma(x-2) c $\frac{\Gamma\left(x\right)}{\Gamma\left(x - 2\right)}$ simplify(c) $\displaystyle \left(x - 2\right) \left(x - 1\right)$ 위의 예들 중 객체 c의 감마함수(gamma(x))는 확률분포 등 여러 부분에서 사용되는 표현식으로 다음과 같이 정의 됩니다. 감마함수는 음이 아닌 정수를 제외한 모든 수에서 정의됩니다. 식 1과 같이 자연수에서 감마함수는 factorial(!), 부동소수(양의 실수)인 경우 적분을 적용하여 계산합니다. $$\tag{식 1}\Gamma(n) =\begin{cases}(n-1)!& n:\text{자연수}\\\int^\infty_0x^{n-1}e^{-x}\,dx& n:\text{부동소수}\end{cases}$$ x=symbols('x') gamma(x).subs(x,4) $\displaystyle 6$ factorial 계산은 math.factorial() 함수를 사용할 수 있습니다. import math math.factorial(3) 6 a=gamma(x).subs(x,4.5) a.evalf(3) 11.6 simpilfy() 함수의 알고리즘은 식에서 공통사항을 찾아 정리하...

sympy.solvers로 방정식해 구하기

sympy.solvers로 방정식해 구하기 대수 방정식을 해를 계산하기 위해 다음 함수를 사용합니다. sympy.solvers.solve(f, *symbols, **flags) f=0, 즉 동차방정식에 대해 지정한 변수의 해를 계산 f : 식 또는 함수 symbols: 식의 해를 계산하기 위한 변수, 변수가 하나인 경우는 생략가능(자동으로 인식) flags: 계산 또는 결과의 방식을 지정하기 위한 인수들 dict=True: {x:3, y:1}같이 사전형식, 기본값 = False set=True :{(x,3),(y,1)}같이 집합형식, 기본값 = False ratioal=True : 실수를 유리수로 반환, 기본값 = False positive=True: 해들 중에 양수만을 반환, 기본값 = False 예 $x^2=1$의 해를 결정합니다. solve() 함수에 적용하기 위해서는 다음과 같이 식의 한쪽이 0이 되는 형태인 동차식으로 구성되어야 합니다. $$x^2-1=0$$ import numpy as np from sympy import * x = symbols('x') solve(x**2-1, x) [-1, 1] 위 식은 계산 과정은 다음과 같습니다. $$\begin{aligned}x^2-1=0 \rightarrow (x+1)(x-1)=0 \\ x=1 \; \text{or}\; -1\end{aligned}$$ 예 $x^4=1$의 해를 결정합니다. solve() 함수의 인수 set=True를 지정하였으므로 결과는 집합(set)형으로 반환됩니다. eq=x**4-1 solve(eq, set=True) ([x], {(-1,), (-I,), (1,), (I,)}) 위의 경우 I는 복소수입니다.즉 위 결과의 과정은 다음과 같습니다. $$x^4-1=(x^2+1)(x+1)(x-1)=0 \rightarrow x=\pm \sqrt{-1}, \; \pm 1=\pm i,\; \pm1$$ 실수...