我有这行代码..
raw_input("Hello, %s, this is a question: ") % name
但我得到并且错误地说:
“在字符串格式化过程中并非所有参数都被转换”
使用%s
?
input()
答案 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: