gpt4 book ai didi

python - 属性错误 : 'NoneType' object has no attribute 'format'

转载 作者:太空狗 更新时间:2023-10-29 17:38:02 29 4
gpt4 key购买 nike

print ("Hello World")
print ("{} World").format(Hello)

我正在开发我的第一个“Hello World”程序,我可以通过使用 print 函数和一个简单的字符串文本来让它工作,但是当我尝试使用 .format 时,它给出了我的错误:

AttributeError: 'NoneType' object has no attribute 'format' 

这是说我需要为 .format 初始化一个变量还是我遗漏了什么?

最佳答案

你的括号错了

print("Hello World")
print("{} World".format('Hello'))

注意 - 错误

  • format函数是str的一个属性,所以需要在string上调用
  • 除非声明,否则 Hello 是一个字符串,应该是 'Hello'

对于 Py2 你可以做

print "{} World".format('Hello') 

关于python - 属性错误 : 'NoneType' object has no attribute 'format' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28378257/

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