我在python 3中创建了一个简单的疯狂libs程序,用户输入名词和代词,程序应打印出来自用户的输入。
这是我的代码:
print ("Welcome to Mad Libs. Please enter a word to fit in the empty space.")
proper_noun = input("One day _________ (Proper Noun)").lower()
ing_verb = input("Was __________ (Verb + ing) to the").lower()
noun1= input("to the _________ (Noun)").lower()
pronoun1 = input("On the way, _____________ (Pronoun)").lower()
noun2 = input("Saw a ________ (Noun).").lower
pronoun2 = input("This was a surprise so ________ (Pronoun)").lower()
verb2 = input("_________ (verb) quickly.").lower()
#Asks user to complete the mad libs
print ("One day " + proper_noun)
print ("Was " + ing_verb + " to the")
print (noun1 + ". " + "On the way,")
print (pronoun1 + " saw a " + noun2 + ".")
print ("This was a surprise")
print ("So " + pronoun2 + " " + verb2 + " quickly.")
获取此错误代码:TypeError: Can't convert 'builtin_function_or_method' object to str implicitly
在这一行:
print (pronoun1 + " saw a " + noun2 + ".")
python相当新,所以我不完全确定这个错误意味着什么以及如何解决它,有人可以向我解释这个错误代码吗?
答案 0 :(得分:5)
问题在于名词2变量
noun2 = input("Saw a ________ (Noun).").lower()
您正在为其分配函数.lower,而不是调用它的结果。您应该将该函数称为.lower() -
TypeError: Can't convert 'builtin_function_or_method' object to str implicitly
对于未来的读者
当您遇到诸如 - +
之类的问题时 - 尝试使用()
运算符连接变量包含字符串时。
问题基本上是其中一个变量实际上是一个函数/方法,而不是实际的字符串。
当您尝试在字符串上调用某个函数时,通常会发生这种情况(如OP的情况),但是错过了它的name = name.lower #It should have been `name.lower()`
语法(如OP的情况) -
()
如果没有/middleware/project/img
语法,您只需将函数/方法分配给变量,而不是调用函数的实际结果。要调试此类问题,您可以查看分配给变量的行,在抛出错误的行中使用,并检查是否错过了调用任何函数。