我是python的新手,现在有点用它玩了。
因此,我正在尝试使用字符串格式并收到以下代码的错误消息:
domain = 'myway.net'
inet = 'the internet'
line2 = "Play the way through %s using %s" (inet, domain)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'str' object is not callable
我在做什么错?
答案 0 :(得分:3)
也许您在字符串和参数之间缺少格式运算符?尝试在两者之间添加%
:
line2 = "Play the way through %s using %s" % (inet, domain)