Python找不到“main”modu

2024-05-23 16:21:56 发布

您现在位置:Python中文网/ 问答频道 /正文

当我使用命令python filename.py运行代码时,会出现以下错误

/Library/anaconda/bin/python: can't find '__main__' module in filename.py

我不知道这里到底出了什么问题。我需要帮助改正这个错误。 我该怎么纠正?

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(“Hello World”)
    print(approximate_size(1000000000000, False))
    print(approximate_size(1000000000000))

Tags: inpytruesizeifbytesismain