일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 영어
- 스카이 안드로이드폰 시리우스 K양 동영상
- 안드로이드 바탕화면
- 안드로이드 개발 2.0
- 하루한마디영어
- MapView
- 아이폰 배경화면
- 안드로이드 2.0 개발
- 인기있는 블로그 만들기
- 안드로이드폰
- 안드로이드
- 스마트폰 배경화면
- android
- 구글 안드로이드
- 안드로이드2.0개발
- 안드로이드2.0
- 스카이 안드로이드폰 시리우스
- Form Stuff
- 안드로이드 개발 강좌
- 안드로이드 배경화면
- 구글 안드로이드 개발
- SKY 시리우스
- 아이폰 바탕화면
- 안드로이드개발
- sky 시리우스폰
- 안드로이드 개발 2.0 강좌
- 구글안드로이드
- 안드로이드 개발
- 하루 한마디 영어
- objective-c
- Today
- Total
목록TIS_2020 (169)
moozi
import csv min_temp = 0 # 최고 기온 값을 저장할 변수 min_date = '' # 최고 기온이 가장 높았던 날짜를 저장할 변수 f=open("seoul.csv","r",encoding='cp949') data=csv.reader(f,delimiter=",") header=next(data) #첫번째줄(제목) 제외 for row in data : if row[-2] == '': # 값이 없으면 row[-2] = 0 # 0를 넣어 빈 문자열이 있던 자리라고 표시 row[-2] = float(row[-2]) # 최고 기온을 실수로 변환 if min_temp > row[-2]: min_date = row[0] min_temp = row[-2] f.close() print(min_date) ..
scores=[] score={"이름":"","영어":0,"수학":0,"과학":0,"평균":0} while True: print("===============") print("등록 : 1 - 등록중 종료 :quit") print("목록 : 2") print("종료 : 0") print("===============") menu=input("menu : "); if menu=="1": score["이름"]=input("이름을 입력하세요 : ") if (score["이름"] == "quit"): break score["영어"]=input("영어점수를 입력하세요 : ") if (score["영어"] == "quit"): break score["수학"]=input("수학점수를 입력하세요 : ") if (scor..
contextConfigLocation /WEB-INF/spring/root-context.xml org.springframework.web.context.ContextLoaderListener appServlet org.springframework.web.servlet.DispatcherServlet contextConfigLocation /WEB-INF/spring/appServlet/servlet-context.xml 1 appServlet / encoding org.springframework.web.filter.CharacterEncodingFilter encoding UTF-8 encoding appServlet
create sequence seq_board; create table tbl_board( bno number(10,0), title varchar2(200) not null, content varchar2(2000) not null, writer varchar2(50) not null, regdate date default sysdate, updatedate date default sysdate ); alter table tbl_board add constraint pk_board primary key(bno); insert into tbl_board(bno,title,content,writer) values(seq_board.nextval,'테스트제목','테스트내용','user00'); commit;..
socket.io/get-started/chat
노선정보조회서비스 www.data.go.kr/tcs/dss/selectApiDataDetailView.do?publicDataPk=15000193 버스위치정보조회서비스 www.data.go.kr/tcs/dss/selectApiDataDetailView.do?publicDataPk=15000332
html_workspace drive.google.com/file/d/1JsJctLbgsnCRJfMu-9dvm9X97u-lgUHb/view?usp=sharing javascript_workspace