Notice
Recent Posts
Recent Comments
Link
목록클래스예제 (1)
완숙의 블로그
[Python] 14 - 클래스 예제 (class example)
문제 inputdata1.csv 와 inputdata2.csv 를 입력으로 받아서 sample.csv와 같은 형태로 결과를 만드는 프로그램을 작성해라. myFile 클래스를 만들어서 풀이해라. inputdata1.csv ID,Name 20190001,Apple 20190003,Pear 20190002,Orange inputdata2.csv ID,Class1,Class2,Class3 20190003,90,90,98 20190002,45,12,37 20190009,10,10,10 20190001,89,92,35 sample.csv ID,Name,Course 1,Course 2,Course 3,Average 20190001,Apple,89,92,35,72 20190002,Orange,45,12,37,31 20..
Programing Language/Python
2019. 6. 14. 19:33