How do I open a text file in Python?
问题 Currently I am trying to open a text file called "temperature.txt" i have saved on my desktop using file handler, however for some reason i cannot get it to work. Could anyone tell me what im doing wrong. #!/Python34/python from math import * fh = open('temperature.txt') num_list = [] for num in fh: num_list.append(int(num)) fh.close() 回答1: The pythonic way to do this is #!/Python34/python num_list = [] with open('temperature.text', 'r') as fh: for line in fh: num_list.append(int(line)) You