次のような手順がある場合:
def P(x):
# x is an integer
print str(x)
次のような出力が必要です。
>>> You chose the number: X
ここで、X はプロシージャ P 内に出力された結果です。プロシージャを変更せずにそれを行うにはどうすればよいですか?
私がこれを好きなら:
print 'You chose the number: '
P(x)
もらいます
You chose the number:
X
どうすればそれらを同じ行に入れることができますか?