要導入文本文件,可以使用Python中的內置函數open()來打開文件并讀取其內容。下面是一個簡單的示例代碼:
# 打開文件
with open('example.txt', 'r') as file:
# 讀取文件內容
content = file.read()
# 輸出文件內容
print(content)
在這個示例中,假設要導入的文本文件名為example.txt。使用open()函數打開文件,并使用’read’模式(‘r’)來讀取文件內容。讀取文件內容后,可以對其進行進一步處理或輸出。