質問1:
word = 'fast'
print '"',word,'" is nice'
として出力を与えます" fast " is nice
。
出力を取得するにはどうすればよいですか。"fast" is nice
つまり、前後のスペースを削除したいword
ですか?
質問2:
def faultyPrint():
print 'nice'
print 'Word is', faultyPrint()
次のような出力が得られます
Word is nice
None
出力を asWord is nice
およびNone
remove したい。
からの出力は必要ありません
print 'Word is'
faultyPrint()
それは私に出力を与えるので
Word is
nice
関数を変更せずに同じ出力形式を維持するにはどうすればよいですか?