Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
format()メソッドで${}を含む文字列を出力する必要があります
たとえば、印刷したいのですが
"hello ${a} hello"
このPythonコードを使用する
print "{string1} ${a} {string1}".format(string1="hello")
ただし、format()は{a}の入力文字列を予期しているため、KeyError'a'が発生します。$ {a}を無視するようにformat()に教えるにはどうすればよいですか?
{と}を{{から}}に2倍にする必要があります。
print "{string1} ${{a}} {string1}".format(string1="hello")