import pandas as pd soundPath = 'drive/My Drive/다핏문제/02/NLP02_Sound.xlsx' data = pd.read_excel(soundPath) f = open('drive/My Drive/다핏문제/01/Beta01_NLP.txt', mode='r', encoding='euc-kr') s = f.read() buf = '' for s in s: s = s.upper() if s in data: s = s.replace(s, data[s][0]) buf += s f = open('drive/My Drive/다핏문제/02/DF901_02_이름.txt', mode='w', encoding='euc-kr') f.write(buf) f.close() 한영 대..