You are viewing a single comment's thread from:RE: Steem Developer Portal - TutorialsでPYTHONを学ぶ、続きView the full contextyasu (81)in SCT.암호화폐.Crypto • 6 years ago print("created="+post['created'].strftime('%Y-%m-%d %H:%M:%S')) の部分は、以下のようにも記述できる。 post['created'])をstr型に変換して文字結合する。 print("created="+str(post['created'])) プラスで結合するのではなく、カンマで区切る print("created=",post['created'],sep="")
完全なコード