분류 전체보기(185)
-
[파이썬 Example #006] Text 파일 바꾸기 (Replace)
1. 한 줄 바꾸기 1 2 3 4 5 6 7 8 9 10 11 12 13 14 def replace_line_bum(file_name, search_text, replace_text): listOfFile = [] search_str = search_text.lower() with open(file_name, 'rt') as f: for line in f: if line.lower().find(search_str) != -1: listOfFile.append(replace_text) else: listOfFile.append(line.rstrip('\n')) with open(file_name, 'w') as f: for line in listOfFile: f.writelines("%s\n" % line..
2019.10.17 -
[파이썬 Example #005] 디렉토리 다루기
1. 현재 폴더 확인, 폴더 이동 1 2 3 4 5 6 7 import os print(os.getcwd()) #현재 폴더 확인 os.chdir('/home/student/bumhee/02_study/04_odin') #폴더 이동하기 print(os.getcwd()) Colored by Color Scripter cs 2. 현재 폴더에 있는 파일 리스팅 1 2 3 4 5 6 7 import os all_file_list = os.listdir() # 현재 폴더의 모든 파일 리스트 inp_file_list = [file for file in all_file_list if file.endswith(".inp")] print("file_list: {}".format(inp_file_list)) cs
2019.10.16 -
[PyCharm #002] SciView 열기
1. PyCharm에서 Sciview 열기 [Run] --> [Profile 'xxx'] 실행 프로그램이 실행되면서 cProfile profiler가 작동한다. 아래쪽에서 [4:Run]을 선택하고 아래와 같은 아이콘을 클릭하면, Profile stats 창이 뜬다. 이 창에서는 Statistics(각 기능이나 변수가 몇번 수행되었는지나 시간을 보여줌)와 Call Graph(프로그램의 로직을 보여줌)을 볼 수 있다. [Profile 'xxx']을 실행하고 나면 'SciView'에서 그래프나 표를 볼 수 있다.
2019.10.16 -
[영어 책 읽기 #001 ] HARRY POTTER
Harry potter and the sorcerer's stone summary: https://www.shmoop.com/harry-potter-sorcerers-stone/summary.html Harry Potter and the Sorcerer's Stone Summary Eleven years ago, wizards rejoiced all over the world, and Muggles (non-magic folk) were confused. They celebrated because He-Who-Must-Not-Be-Named was defeated. In other words, Voldemort (the evilest wizard around) killed Harry Potter's pa..
2019.10.14 -
when it comes to / in terms of
출처: https://josecarilloforum.com/forum/index.php?topic=4900.0 use of about, in terms of and when it comes Joe Carillo You’re correct in saying that “when it comes to,” “in terms of,” and “about” are similar in meaning, for they all convey the sense of “with regard to” or “concerning” something. They have different shades of meaning, though, and there are reall josecarilloforum.com English Idioma..
2019.10.12 -
a/an/the 구분하기 연습
출처: https://www.englisch-hilfen.de/en/exercises_list/artikel.htm Article - the, a - Grammar Exercises - Learning English www.englisch-hilfen.de 출처: https://agendaweb.org/grammar/articles-definite-the-exercises.html Articles exercises - THE - definite article agendaweb.org 출처: https://www.englishpage.com/articles/index.htm Articles A, An, The | ENGLISH PAGE Articles A, An, The English has three a..
2019.10.10 -
[엑셀 #010] 여러 셀 선택하여 포멧 바꾸기 or 삭제하기 VBA
출처: 기초 문법: https://trumpexcel.com/vba-ranges/ Working with Cells and Ranges in Excel VBA (Select, Copy, Move, Edit) Most your time working with Excel is spend in the worksheet area - dealing with cells and ranges. In this tutorial, you'll learn how to work with cells and ranges using VBA (selecting, copying, moving, and editing cells and ranges). trumpexcel.com 루프(loop) 문법: https://trumpexcel.co..
2019.10.01 -
우라늄연료 경제성 평가 (Nuclear Fuel Cost Analysis)
1. SWU (Separative work unit): https://energyeducation.ca/encyclopedia/Separative_work_unit Separative work unit - Energy Education Figure 1. Graph showing increase in SWU with increase in 235U concentration. Power reactors here depicts Light Water reactors (e.g. PWR and BWR's).[1] The Separative Work Unit (SWU) is a unit that defines the effort required in the uranium enrichment proce energyedu..
2019.10.01 -
영어 논문 작성 시 Editing Tips
출처: http://www.gly.uga.edu/railsback/writing2.html Scientific Editing The purpose of scientific research is to increase the knowledge of all interested humans, and thus research is wasted effort if it is not communicated clearly. The following is not a substitute for a course in scientific writing, but it compiles one w www.gly.uga.edu Some comments on writing and editing (the latter is as impor..
2019.09.27 -
논문 검색 시 유용한 사이트
1. https://sci-hub.tw/ Sci-Hub: removing barriers in the way of science The project is supported by user donations. Imagine the world with free access to knowledge for everyone ‐ a world without any paywalls. Donate for this vision to become true. Make your contribution to the battle against copyright laws and information ineq sci-hub.tw 2. http://gen.lib.rus.ec/ Library Genesis gen.lib.rus.ec
2019.09.26 -
영어의 Latin abbreviations
출처: https://www.math.uh.edu/ Abbreviation Latin term English translation i.e. id est that is e.g. exempli gratia for example cf. confer compare et al. et alii and others In particular, the abbreviations i.e. and e.g. are often mistakenly interchanged, and cf. is often misused to mean “see” when it actually means “compare”. Also, note that there is no period after “et” since it is not an abbrevia..
2019.09.25 -
논문 작성 시 영어로 Equation 적는 방법
1. Mathematical Writing Tips 2. Scientific Writing 3. Style Guide for Mathematical Papers
2019.09.25 -
업무 시 유용한 소프트웨어
1. Groupy: https://www.stardock.com/products/groupy/ Stardock Groupy: Tabs for Windows Optimize your workflow Straightforward and easy to use, Groupy lets you manage tabs in quick and natural ways within the browser-like interface. Tabbing between apps keeps the desktop clear of additional distractions and eliminates the need to constantly l www.stardock.com 2. Gantt Chart Excel: https://ganttxl..
2019.09.25 -
유의어(Synonym)과 반의어(Antonym) 찾기 사이트
https://www.synonym.com/ https://www.synonym.com/ noun. A state of deeply felt distress or sorrow. www.synonym.com
2019.09.23 -
영어 논문작성 시 유용한 문장들 모아둔 사이트
출처 : https://www.researchgate.net/post/Academic_Vocabulary_Useful_Phrases_and_Sentences_for_Academic_Writing_and_Research_Paper_Writing 1. Introduction section http://www.ref-n-write.com/trial/research-paper-sample-writing-introduction-section-academic-phrasebank-vocabulary/ 2. Materials and Methods section http://www.ref-n-write.com/trial/research-paper-sample-writing-methods-section-academic-p..
2019.09.21 -
[파이썬 Example #004] text파일의 특정 단어를 찾아서 새로운 파일에 쓰기
출처: https://www.computerhope.com/issues/ch001721.htm How do I Extract Specific Portions of a Text File Using Python? Tutorial and examples with step-by-step instructions for extracting text from a file using Python. www.computerhope.com 아래의 함수를 보면 입력으로 파일(file)을 받는다. 받은 파일을 열어서 리스트 형태로 만든다. 이 때 'rt'는 read와 text의 약자이다. file을 outputFile로 open해서 outputFile의 한 줄 한 줄을 for loop로 line에 집어 넣는다. 이 때 그냥 l..
2019.09.19 -
[엑셀 #009] 함수를 이용한 조건부 서식 (Conditional Formatting using Formula) - 특정 글자가 포함되면 서식 적용
위와 같이 표가 두 개 있을 때, 왼쪽의 리스트 중에 오른쪽 표에 있는 것들에게만 초록색 수식을 걸고 싶다. [수식을 걸고 싶은 셀들을 선택] --> [조건부 서식] --> [수식을 사용하여 서식 지정] =SUM(COUNTIF(A1,"*"&$C$1:$S$17&"*")) 이 때 A1에 '$'는 없어야한다. 두 번째도 비슷한 엑셀이다. Table에 '포함 문자'가 있으면 빨간색 서식을 걸어주고 없으면 서식을 안 걸어주는 예이다. J열의 셀에는 IF를 포함한 수식이 들어가 있고, 조건부 서식에는 IF를 뺀 수식이 들어가 있다. 셀 --> =IF(COUNTIF(A3:F3,H3),"OK","NO") 조건부 서식 --> =COUNTIF(A3:F3,H3)
2019.09.18 -
[PyCharm #001] 새 프로젝트 만들기, Remote Host 브라우저 띄우기, Remote Host Terminal 띄우기
1. PyCharm에서 새로운 프로젝트 실행하는 방법 [File] --> [New Project] Location 변경 후 [Create] 클릭 [New Window]에서 열기 [File] --> [Settings] --> [Project Interpreter] 설정 [File] --> [Settings] --> [Deployment] 설정 2. Remote Host Browser (Server 폴더 구조) 보는 방법 [Tools] --> [Deployment] --> [Browse Remote Host] 3. Remote Host Terminal (Server의 terminal) 보는 방법 [Tools] --> [Start SSH Session] --> Host 선택 4. 파일의 수정 기록 (editi..
2019.09.18 -
영어 논문 작성 시 동사 시제 (A Verb Tense in Scientific Writing)
출처: https://wordvice.com/which-verb-tense-to-use-in-a-research-paper/ Which Verb Tense to Use in a Research Paper | Wordvice Whether your writing or editing, use this reference card to help remember which verb tense you should use in your scientific research paper! wordvice.com 출처: https://wordvice.com/which-tense-should-be-used-in-abstracts-past-or-present/ Which Tense Should Be Used in Abstrac..
2019.09.17 -
[맞춤법 #008] 헷갈리는 맞춤법/띄어쓰기 모음
맞춤법 연결 링크: https://m.blog.naver.com/canonkoreabs/221522156157 띄어쓰기 연결 링크: https://m.blog.naver.com/canonkoreabs/221538795611
2019.09.16 -
[맞춤법 #007] '안됐다' '안 먹다' '못하다' '못 먹다' 띄어쓰기
출처: https://m.terms.naver.com/entry.nhn?docId=1711843&cid=42001&categoryId=42001#TABLE_OF_CONTENT2 '안'과 '못'은 긍정문을 부정문으로 만들어줘요. ① 철수가 밥을 먹는다. (긍정문) ② 철수가 밥을 안 먹는다. (부정문) ③ 철수가 밥을 못 먹는다. (부정문) 긍정문에 '안'과 '못'을 붙이면 부정문이 되고, '안'과 '못'이 붙은 부정문에서 '안'과 '못'을 떼면 긍정문이 되고······. 뗐다 붙였다 할 수 있어요. 뗐다 붙였다 할 수 있으려면 당연히 띄어 써야 하겠죠? 그러면 뗐다 붙였다 할 수 없는 경우에는 어떻게 해야 하죠?그때는 붙여 써야 합니다. 다음 문장을 보세요. ④ 철수, 그 아이 참 안됐다. ⑤ 너는 어떻..
2019.09.16