목록분류 전체보기 (512)
감동, 마음이 움직이는 것
슬기로운 감방생활 9화의 테마는 "후회"인 것인가. ㅎㅎ후회는 인생에서 결코 피할 수 없는 일이다. 그 때, 왜 그런일을 했을까. 그 때, 다른 선택을 했었더라면. 그 선택 때문에 내 인생이 실패한 것만 같은 그런기분. 인생이 후회될 때.그런데 그것 아는가. 우리 모두는 후회한다. 그리고 그럼에도 불구하고 살아가야 한다. 그게 인생.
http://l4wisdom.com/python/python_string.phpreplace()str.replace(old, new, (optional) max) The replace() returns the string: after replacing the parameter old to new . The parameter max defined how many occurrences have been replaced. If max is not specified then all occurrences will be replaced. [Example] newname = fname.replace("err", "out")
https://stackoverflow.com/questions/5188792/how-to-check-a-string-for-specific-characters s = "test"target = set("abcdefg")if any( (c in target) for c in s ):print s 한글에서는 안 된다... 유니코드라서 그렇다. 한 글자가 3개의 유닛으로 적혀있어서 그 세 개중에 하나라도 있으면 있다고 찾아 버린다.예를들어,target = set("랄라")는 유니코드로 '\xeb\x9e\x84\xeb\x9d\xbc'이다.s="뭐래"는 '\xeb\xad\x90\xeb\x9e\x98'이다. 그래서 위와 같은 방법을 사용하면 \xeb가 같아서 같은 글자가 있다고 찾아버린다 이런경우 list를 사용..
https://stackoverflow.com/questions/8855574/convert-ndarray-from-float64-to-integerinteger array만드는 법>>> a = numpy.zeors(3, dtype=numpy.int64)만약 a가 integer가 아닌 다른 type이었다면 astype을 통해서 integer형으로 바꿀 수 있다. >>> a = a.astype(numpy.int64)
http://www.thegeekstuff.com/2010/02/awk-conditional-statements/ >> cat data.txt |awk '{if ($5==0 && $2==3) print $0}'
http://hashcode.co.kr/questions/1178/%EB%AC%B8%EC%9E%90%EC%97%B4%EC%97%90%EC%84%9C-%EB%AC%B8%EC%9E%90-%ED%95%98%EB%82%98%EB%A7%8C-%EC%A0%9C%EA%B1%B0%ED%95%98%EA%B3%A0-%EC%8B%B6%EC%9D%80%EB%8D%B0-%EC%96%B4%EB%96%BB%EA%B2%8C-%ED%95%98%EC%A3%A0 예를들어 문자열 "김해"김""에서 "를 없애고 싶다면sentence.replace("\"", "")라고 하면 된다.만약 "를 '로 바꾸고 싶다면 sentence.replace("\"", "\'")라고 하면 된다.
https://m.blog.naver.com/PostView.nhn?blogId=hansyoo&logNo=120166287420&proxyReferer=https%3A%2F%2Fwww.google.de%2F
https://helpdeskgeek.com/linux-tips/understanding-linux-permissions-chmod-usage/"ls -l" commend shows the authority of files or folders.-XXXXXXXXX: owner's authority, group's authority, other's authority, Order of alphabet is "read/write/execute (r/w/x)"[Example] -rwxr--r--
https://stackoverflow.com/questions/627435/how-to-remove-an-element-from-a-list-by-index-in-pythonres = []res.append("a")res.append("b")res.append("c") #res = ['a', 'b', 'c']여기서 만약 두 번째 element인 'b'를 지우고 싶다면 res.pop(1) #res[1] = 'b'이므로 1번 idx에 있는 성분을 지우라는 게 된다. 그러면 다음과 같은 결과를 얻을 수 있다 res = ['a', 'c']. 만약 가장 최근에 넣은 성분을 지고 싶다면 (지금 예에서는 'c')res.pop() 또는 res.pop(-1)을 해주면 된다.
import numpy as npx = np.array(X) #X is data list, we have to convert list to numpy arrayy = np.array(Y) #2d heatmapheatmap, xedges, yedges = np.histogram2d(x, y, bins=100)#1d histogramhist, xedges = cp.histogram(x, bins=100) [Script for read and write]import numpy as npimport re#read datafp = open("data/scatter_a%g_Nen660000.d" % a,'r')lines = fp.readlines()Nlines = len(lines)fp.close() X = []Y..