일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Framework
- 설치
- 토네이도
- spring
- r
- 자료형
- Java
- MongoDB
- ubuntu
- r script
- mariadb
- 연동
- Tornado
- 오픈한글
- 이클립스
- Judge
- 프레임워크
- 파이썬
- online
- BAEKJOON
- API
- 자바스크립트
- 연결
- 백준
- Python
- AWS
- 알고리즘
- OrientDB
- 배열
- 저지
- Today
- Total
목록분류 전체보기 (227)
맛동산
http://humit.tistory.com/249
로직http://phaphaya.tistory.com/19
1 : 1 채팅 웹 구현 -> 일정 시간동안 대화가 없는 사용자에게 먼저 메세지 보내기
http://blog.puding.kr/156
http://blog.naver.com/seogi1004/110098886402http://devsw.tistory.com/115
roadMap={ 'home':{'hair':5, 'super':10, 'academy':9}, 'hair':{'home':5, 'super':3, 'bank':11}, 'super':{'home':10, 'hair':3, 'academy':7, 'restourant':3,'bank':10}, 'academy':{'home':9,'super':7,'bank':7,'school':12}, 'restourant':{'super':3,'bank':4}, 'bank':{'hair':11,'restourant':4,'super':10,'academy':7,'school':2}, 'school':{'bank':2,'academy':12} } ### fastWay={place:[visit, lenth, whereBe..
http://makefortune2.tistory.com/84
http://woongheelee.com/1233
http://qkqhxla1.tistory.com/662
파일을 읽어와서 가공 후 다시 내보내는 코드를 작성함. 우선 에디터를 사용하여 점수가 들어있는 sample.txt라는 파일을 만들었고, 이걸 읽어와서 평균을 구한다음 다시 내보내는 작업을 할거임. 위와 같이 코드를 작성함. readlines()로 sample.txt의 내용을 [70,60,55, ... ,100]의 리스트 형태로 받아와서 lines로 정의 이후 for문을 통해 총 합을 구하고 명수(len)로 나누어 평균값을 구한 뒤, write를 통해 result.txt라는 파일을 출력함 JAVA와 다른점으로 write()할때 무조건 string 형태여야하는 불편함이 있음, 이건 print할때도 항상 불편하게 느끼는데, JAVA에서는 system.out.println("사람은 : " + i + "명입니다"..