감동, 마음이 움직이는 것
[Python] Basic 본문
python 기초
[1] 여러 변수로 이름을 만들고 싶을 때
fp = open('data/output.M1000_t%g_maxt%d_Nen50' % (theta[i], maxt), 'r')
[2] list를 array로 변환할 때
arr = np.array(a)
[3] array의 세 번째 열만 출력하고 싶을 때
print arr[:,1]
[4] for loop에서 integer range를 특정값에서 시작하고 싶을 때
for k in range(time, maxt):
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[gnuplot] splot과 plot을 동시에 사용하기2 (with and without dgrid3d) (0) | 2017.08.11 |
---|---|
[gnuplot] pallette (0) | 2017.08.11 |
[To do] Quene (0) | 2017.07.26 |
[Python] deep copy & range of variable (0) | 2017.07.18 |
[git] 만들어진 git directory 연결해서 받아오기 --- git init, git clone (0) | 2017.07.17 |