gpt4 book ai didi

python - TypeError:不支持的格式字符串传递给 NoneType.__format__

转载 作者:行者123 更新时间:2023-12-05 05:04:10 27 4
gpt4 key购买 nike

first_name = input("what is your first name?")
Last_name = input("what is your last name?")

name = f'{first_name}, {Last_name}'

print("hello, {} welcome to the program!").format(name)

最佳答案

print 返回 None - 您可能打算格式化一个字符串,然后将其传递给 print - 换句话说,您的括号放错了位置:

print("hello, {} welcome to the program!".format(name))

关于python - TypeError:不支持的格式字符串传递给 NoneType.__format__,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61163449/

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