# 1. 에러명 오늘 뜬 에러는 'local variable 'df' referenced before assignment' 입니다. pandas 라이브러리 를 사용하다가 해당 에러가 발생했습니다. 해결법을 알아보도록 하겠습니다. # 2. 해결방법 1) 함수 내에서 변수를 참조하기 전에 할당하지 않은 경우 def example_function(): print(df) # df를 할당하기 전에 참조하고 있음 df = "Hello, World!" example_function() 해결방법 df 를 할당한 후에 참조함 def example_function(): df = "Hello, World!" print(df) example_function() 2) 함수 내에서 전역 변수를 사용하려고 하는 경우 df = "전..