Python:你能使用raw_input和模板字符串吗? (%S)

时间:2013-01-04 02:59:22

标签: python

我有这行代码..

raw_input("Hello, %s, this is a question: ") % name

但我得到并且错误地说:

  

“在字符串格式化过程中并非所有参数都被转换”

使用%s

时是否可以使用input()

1 个答案:

答案 0 :(得分:5)

name在错误的位置;改为:

raw_input("Hello, %s, this is a question: " % name) 

例如:

>>> name = 'Mary'
>>> raw_input('Hello, %s, this is a question:' % name)
Hello, Mary, this is a question: