gpt4 book ai didi

python - TypeError : int() argument must be a string, 类似字节的对象或数字,而不是使用 Python 3.7 时的 'NoneType'

转载 作者:行者123 更新时间:2023-12-04 12:24:23 36 4
gpt4 key购买 nike

我正在尝试运行下面的简单代码段

port = int(os.getenv('PORT'))
print("Starting app on port %d" % port)

我可以理解 PORT 是字符串,但我需要转换为 int。为什么我收到错误
TypeError: int() argument must be a string, a bytes-like object or a number, not 'NoneType'

最佳答案

您没有名为 PORT 的环境变量.
os.getenv('PORT') -> 返回 None -> 尝试将其转换为 int 时抛出异常

在运行脚本之前,通过以下方式在终端中创建环境变量:

export PORT=1234

或者,您可以提供默认端口,以防它未在您的机器上定义为环境变量:
DEFAULT_PORT = 1234
port = int(os.getenv('PORT',DEFAULT_PORT))
print("Starting app on port %d" % port)

关于python - TypeError : int() argument must be a string, 类似字节的对象或数字,而不是使用 Python 3.7 时的 'NoneType',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61697523/

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