私はこのようなコードを持っています:
>>> def enterText(value):
command = input ("enter text: ")
value = command
>>> def start():
text = ""
enterText(text)
print ("you entered: "+str(text))
いろいろ絡んでるけど全然わからない。私は Python を初めて使用します。関数を介して文字列を渡すのを手伝ってもらえますか? ありがとう!