gpt4 book ai didi

Python 找不到 'main' 模块

转载 作者:太空狗 更新时间:2023-10-29 22:06:23 34 4
gpt4 key购买 nike

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

/Library/anaconda/bin/python: 在 filename.py 中找不到“__main__”模块

我不确定这里到底出了什么问题。我需要帮助来纠正这个问题。我该如何纠正这个问题?

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))

最佳答案

这是因为您使用的是引号。将 s 更改为 "s

关于Python 找不到 'main' 模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42681801/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com