전체 글
-
[English] Note 1개발 모음집/English Wiki 2019. 1. 16. 22:30
1. Look who's hear 이게누구야!2. You haven't changed a bit. 너 하나도 안 변했다.3. I'm doing great. 잘지내고 있어.4. What a small world. 세상 참 좁다.5. Don't mention it. 별말을 다해 신경쓰지 마세요.6. Don't bother. 일부러 그럴거 없어.7. Something smells fishy. 뭔가 수상하다.8. That's what friends are for. 친구 좋다는게 뭐야9. I'll drop you off on the way. 내가 가는 길에 내려줄게.10. What's the weather like? 날씨가 어때?11. I'll go with the flow. 대세이 따를게12. I feel li..
-
[Python] 엑셀 코드(xlsx 파일 만들기)개발 모음집/Python 2018. 10. 15. 23:23
import xlsxwriter book = xlsxwriter.Workbook("2-1.xlsx") # 엑셀 파일 이름 지정 sheet1 = book.add_worksheet() # Sheet 만들기 file_open = open("2-1.txt","r") # txt 파일 읽기 cnt = 0 # row는 0 for lines in file_open: line = lines.split("\t") # 탭으로 자르기 if cnt > 1048576: # Row 수가 1048576을 넘으면Sheet1 추가 sheet1 = book.add_worksheet() if str(line[0]).strip() !="": # if line[0].strip이 공백이 아니면 sheet1.write(cnt,0,str(line[..
-
10분만에 배우는 Git개발 모음집/Version Control 2018. 9. 10. 01:05
git 사용방법– 커밋할 폴더 오른쪽 버튼 눌러스 git-bash 선택하면 콘솔창 뜬다– git init– git status– git remote add origin https://github.com/choiwonho/algorithm.git (커밋할 저장소 원격지)– git status(아직 커밋되지 않은 파일이 빨간색으로 표시)– git add . 폴더내 모든 파일 추가– git config –global user.email “guriguri1576@naver.com” (처음 커밋이므로 이메일 주소 입력)– git config –global user.name “bingbingpa” (ID 입력)– git commit -m ‘tetete’ (커밋에 대한 주석)– git push -u origin ma..