목록Tips (Utility, Computer Language, and etc.) (201)
감동, 마음이 움직이는 것
#-*-encoding:utf-8 -*- import sysimport reimport numpy as npreload(sys)sys.setdefaultencoding('utf-8')
1. 다녀와서 누군가에게 설명해줘야 한다고 생각하면서 들으면 초집중할 수 있다. 2. 만약 발표를 한다면 컨택정보(이메일 혹은 홈페이지) & 콜라보레이터(사진포함) & 감사(그룹사람들)을 넣어주면 좋겠다. 발표도 홍보의 수단이다. 누군가에게 나를 소개할 때 내가 어떤일을 하고 뭘 공부했는지를 이야기해주면 더 좋다.
https://stackoverflow.com/questions/30720673/renaming-the-keys-of-a-dictionary>>> dic = {}>>> dic["a"] = 10>>> dic["b"] = 19>>> dic>>> {'a':10, 'b':19}>>> dic["c"] = dic.pop("a")>>> dic>>> {'c':10, 'b':19}
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--