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.
初心者プログラマーはこちら。だから私に耐えなさい。私は簡単なPythonプログラムを持っています。
print "How tall are you?", height = raw_input() print "So you're %r tall" %(height)
高さを6'6''と入力すると、Pythonが出力します
だからあなたは'6\6"'です
出力からスラッシュ"\"を削除するにはどうすればよいですか?
前もって感謝します!
%r高さの表現に変換されます。%s代わりに使用する必要があります
%r
%s
Python >=2.6 を使用している場合は、代わりにこの方法で記述できます。
print "So you're {height} tall.".format(height=height)