编程语言
首页 > 编程语言> > python-编译单个语句时发现多个语句

python-编译单个语句时发现多个语句

作者:互联网

这个问题已经在这里有了答案:            >            SyntaxError: multiple statements found while compiling a single statement                                    1个
我是编程新手.我正在使用《深入Python》一书,并尝试运行第一个示例humansize.py.我将代码复制并粘贴到Python外壳Idle中,并不断出现相同的语法错误:“在编译单个语句时发现了多个语句”.

我将代码下载到BBEdit中,然后将其复制并粘贴到Idle中.我在网上看过,有人说这可能是一个空间问题.但是我遍历了代码,看上去与书中的代码相同,甚至删除并在所有代码行中重新插入了4个空格,但仍然出现错误.

之所以令人沮丧,是因为我确信这是一个简单的问题,但是我已经尽我所知(就尝试研究该问题而言)将其付诸实践.如果是空格和制表符问题,你们中的任何人都知道我可以去哪里并学习如何正确地将代码复制和输入到Idle中吗?我是一个真正的初学者.

感谢社区的任何帮助.谢谢!

我正在运行Mac OSX-V.10.7.5.我正在使用Dive into Python书籍和Python 3.3的最新版本.

代码如下:

>>> '''Convert file sizes to human-readable form.

    Available functions:
    approximate_size(size, a_kilobyte_is_1024_bytes)
    takes a file size and returns a human-readable string

Examples:
>>> approximate_size(1024)
    '1.0 KiB'
>>> approximate_size(1000, False)
    '1.0 KB'

    '''

    SUFFIXES = {1000: ['KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'],
            1024: ['KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB']}

    def approximate_size(size, a_kilobyte_is_1024_bytes=True):
    '''Convert a file size to human-readable form.

    Keyword arguments:
    size -- file size in bytes
    a_kilobyte_is_1024_bytes -- if True (default), use multiples of 1024
                                if False, use multiples of 1000

    Returns: string

    '''
    if size < 0:
        raise ValueError('number must be non-negative')

    multiple = 1024 if a_kilobyte_is_1024_bytes else 1000
    for suffix in SUFFIXES[multiple]:
        size /= multiple
        if size < multiple:
            return '{0:.1f} {1}'.format(size, suffix)

    raise ValueError('number too large')

    if __name__ == '__main__':
    print(approximate_size(1000000000000, False))
    print(approximate_size(1000000000000))

**SyntaxError: multiple statements found while compiling a single statement**
>>> 

解决方法:

您有一些缩进问题.在python中,缩进非常重要,因为解释器使用缩进级别来决定如何对语句进行分组.例如:

if (False):
    print("Hello")
print("World")

与if(False)语句分组在一起的语句永远不要运行,因为if(False)永远不要为true.但是我给您的示例仍然会输出“世界”.这是因为解释器不会将第二个print语句视为if语句的一部分.现在,如果我要使用完全相同的代码并像这样缩进第二个打印语句:

if (False):
    print("Hello")
    print("World")

解释器将看到两个打印语句都比if语句深一个缩进级别,并且不会输出任何内容,因为if(False)始终为false.

相同的缩进适用于函数定义.例如:

def foo():
    if(True):
        print("Hello, World")

因为if语句比foo的定义缩进一级,所以它与foo函数组合在一起.因此,当您调用foo函数时,它将输出“ Hello,World”.

现在是变量.在您的代码中,变量缩进了一层.如果它是函数定义,if语句,for循环等的一部分,那会很好.但是由于不是,它会带来问题.以以下为例:

    a="Hello, World"

if(True):
    print(a)

将为您提供语法或缩进错误,同时:

a="Hello, World"

if(True):
    print(a)

将打印“ Hello,World”.

现在专注于您的代码:

   SUFFIXES = {1000: ['KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'],
        1024: ['KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB']}

需要不缩进一个层次才能成为:

SUFFIXES = {1000: ['KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'],
        1024: ['KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB']}

也:

    def approximate_size(size, a_kilobyte_is_1024_bytes=True):

需要不缩进一个层次才能成为:

def approximate_size(size, a_kilobyte_is_1024_bytes=True):

和:

if __name__ == '__main__':
print(approximate_size(1000000000000, False))
print(approximate_size(1000000000000))

需要是:

if __name__ == '__main__':
    print(approximate_size(1000000000000, False))
    print(approximate_size(1000000000000))

将所有这些放在一起,您将获得:

SUFFIXES = {1000: ['KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'],
        1024: ['KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB']}

def approximate_size(size, a_kilobyte_is_1024_bytes=True):
    '''Convert a file size to human-readable form.

    Keyword arguments:
    size -- file size in bytes    
    a_kilobyte_is_1024_bytes -- if True (default), use multiples of 1024
                            if False, use multiples of 1000

    Returns: string

    '''
    if size < 0:
        raise ValueError('number must be non-negative')

    multiple = 1024 if a_kilobyte_is_1024_bytes else 1000
    for suffix in SUFFIXES[multiple]:
        size /= multiple
        if size < multiple:
            return '{0:.1f} {1}'.format(size, suffix)

    raise ValueError('number too large')

if __name__ == '__main__':
    print(approximate_size(1000000000000, False))
    print(approximate_size(1000000000000))

我希望这有帮助!

标签:python,syntax-error
来源: https://codeday.me/bug/20191011/1896416.html