如何使用python读取和打印整个.txt文件?

时间:2017-02-03 12:56:37

标签: python eclipse eclipse-plugin pycharm pydev

我是python的新手,我应该编写一个程序,可以读取整个.txt文件并打印出来。该文件是我的第一语言(挪威语)的文章,很长。我有三个版本应该做同样的事情,但都得到错误。我已经尝试在机器人PyCharm和eclipse中安装了PyDev,我在两者上都得到了相同的错误......

from sys import argv

import pip._vendor.distlib.compat

script, dev = argv

txt = open(dev)

print("Here's your file %r:" % dev)
print(txt.read())


print("Type the filename again:")h
file_again = pip._vendor.distlib.compat.raw_input("> ")

txt_again = open(file_again)

print(txt_again.read())

但这会导致错误:

Traceback (most recent call last):
File "/Users/vebjornbergaplass/Documents/Python eclipse/oblig1/src/1A/1A.py", line 5, in <module>
script, dev = argv
ValueError: not enough values to unpack (expected 2, got 1)

同样,我是python的新手,我搜索过,但没有找到解决方案。

我的下一次尝试是:

# -*- coding: utf-8 -*-

import sys, traceback

fr = open('dev.txt', 'r')
text = fr.read()
print(text)

但这会导致这些错误:

Traceback (most recent call last):
    File "/Users/vebjornbergaplass/Documents/Python eclipse/oblig1/src/1A/v2.py", line 6, in <module>
        text = fr.read()

  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/encodings/ascii.py", line 26, in decode
    return codecs.ascii_decode(input, self.errors)[0]

UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 26: ordinal not in range(128)

我不明白为什么我不工作。

我的第三次尝试是这样的:

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import argparse
parser = argparse.ArgumentParser()

parser.add_argument("dev.txt", help="dev.txt")
args = parser.parse_args()
if args.filename:
    with open('dev.txt') as f:
        for line in f:
            name, _ = line.strip().split('\t')
            print(name)

这会导致错误:

usage: v3.py [-h] dev.txt
v3.py: error: the following arguments are required: dev.txt

欢迎任何有关这些无效的帮助。 提前谢谢你:D

4 个答案:

答案 0 :(得分:1)

file = open("File.txt", "r")
a = str(file.read())

print(a)

这是你在找什么?

答案 1 :(得分:1)

对于第二种方法是最简单的,我会坚持下去。

你说dev.txt的内容是挪威语,也就是说,它会包含像Æ,Ø,Å这样的非ascii字符等.python解释器试图告诉你:

UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 26: ordinal not in range(128)它不能将字节0xC3 = 195 (decimal)解释为ascii字符,它限制在128个不同字符的范围内。

我假设您使用UTF-8作为编码,但如果没有,请更改第2行中的参数。

# -*- coding: utf-8 -*-

fr = open('dev.txt', 'r', encoding='utf-8')
text = fr.read()
print(text)

如果您不知道自己的编码,可以通过编辑或use python to guess it找到。

终端未配置为打印Unicode字符或正确映射时,终端也可能导致错误。您可能需要查看this question and its answers.

操作文件后,建议关闭它。您可以通过fr.close()手动执行此操作,也可以让python自动执行此操作:

with open('dev.txt', 'r', encoding='utf-8') as fr:
    # automatically closes fr when leaving this code-block

答案 2 :(得分:0)

例如:

var_dump ($ order);

答案 3 :(得分:0)

这是一个可能的解决方案:

f = open("textfile.txt", "r")
lines = f.readlines()
for line in lines:
    print(line)
f.close()

将其保存为例如myscript.py并执行它:

python /path/to/myscript.py