gpt4 book ai didi

python - 从命令提示符运行时程序抛出(文件中以 '\xff' 开头的非 UTF-8 代码)

转载 作者:行者123 更新时间:2023-12-04 12:00:54 26 4
gpt4 key购买 nike

下面是代码:

def add(a,b):
return a + b
while True:
try:
a=float(input('Please enter a number'))
break
except:
print ('Invalid Number, please re-enter')
while True:
try:
b=float(input('Please enter a number'))
break
except:
print ('Invalid Number, please re-enter')
print(add(a,b))

最佳答案

我收到一个错误,因为我在 PowerShell 中创建了一个 python 文件,但我正在 VS 代码中编辑它。显然他们使用冲突的编码模式。
我的解决方案:我删除了原始文件并使用 VS 代码创建了一个新文件。
这是详细解释问题所在的链接。
https://docs.microsoft.com/en-us/powershell/scripting/dev-cross-plat/vscode/understanding-file-encoding?view=powershell-7.1

关于python - 从命令提示符运行时程序抛出(文件中以 '\xff' 开头的非 UTF-8 代码),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52995936/

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