組み込み関数 repr() 使い方 str = repr( obj ) 文字列を返します import datetime dt = datetime.date.today() print(repr(dt)) #結果 datetime.date(20... 組み込み関数