[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
【コード】 import code code.interact("please input.", raw_input) 【実行結果】 user@localhost ~ $ python interact.py please input. >>> 3+3 6 >>> hoge=1 >>> print hoge 1 >>>
【コード2】 import code def reader(a): return '"'+raw_input(a)+'"' code.interact("please input.", reader) 【実行結果】 user@localhost ~ $ python interact.py please input. >>> 3+3 '3+3' >>> hoge=1 'hoge=1' >>> print hoge 'print hoge' >>>