python打开txt文件

with open("D:/Users/Administrator/Documents/str.txt","r",encoding="utf-8") as file_con:
    for i in  file_con:
        print(type(i))