import

패키지 클래스는 데이터와 메서드를 묶어 캡슐화한 것이다. 패키지는 클랫스를 묶어서 캡슐화한 것이다. 오늘의 운세 프로그램 오늘의 날짜와 대길, 길, 중길, 소길, 흉 중 하나의 운세를 표시하자. import java.util.GregorianCalendar; import java.util.Random; public class LuckyDraw { public static void main(String[] args) { GregorianCalendar today = new GregorianCalendar(); int y = today.get(GregorianCalendar.YEAR); //연 int m = today.get(GregorianCalendar.MONTH) + 1; //월 int d = toda..
import csv# 문자열(string)을 아이템으로 갖는 리스트 # 문자열(string)을 아이템으로 갖는 리스트row1 = ['test1', 'success', 'Mon']row2 = ['test2', 'failure, kind of', 'Tue']row3 = ['test3', 'success, kind of', 'Wed']result = [row1, row2, row3]print(result) [['test1', 'success', 'Mon'], ['test2', 'failure, kind of', 'Tue'], ['test3', 'success, kind of', 'Wed']] # 파일을 쓰기 모드로 열기# csv 파일을 쓸(write) 때는 불필요한 라인이 써지지 않도록 하기 위해서# 파일을 ..
Codezoy
'import' 태그의 글 목록