Write 썸네일형 리스트형 [Python] 파일 읽고 쓰기 # _*_ coding: utf8 _*_ with open({file_path}, {file_mode}) as fp:fp.write('Hello World')fp.close() 파일 모드r - 파일 읽기만 할 경우w - 파일에 내용 쓸때a - 기존 파일에 새로운 내용 추가시 더보기 [PHP] Write ini file function write_ini_file($assoc_arr, $path, $has_sections=FALSE) { $content = ""; if ($has_sections) { foreach ($assoc_arr as $key=>$elem) { $content .= "[".$key."]\n"; foreach ($elem as $key2=>$elem2) { if(is_array($elem2)) { for($i=0;$i$elem) { if(is_array($elem)) { for($i=0;$i array( 'first-1' => 1, 'first-2' => 2, 'first-3' => 3, 'first-4' => 4, 'first-5' => 5, ), 'second' => array( 'second-1.. 더보기 이전 1 다음