4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【python】佐々木琴子さん、ツイート文例ツール

Posted at

はじめに

声優の佐々木琴子さんが、毎日おいしかった食事を定型文でツイートされていらっしゃるので、ツイート文例ツールを作りました

どんなツール?

佐々木琴子さんのツイートに

今日はうどんを食べました。美味しかったです

が食べもの以外の部分をテンプレートにしています。今回はテンプレートの作成を
実装しました。

実装したコード

# 佐々木琴子さんツイート用BOT作成ツール

food = ""
while True:
  print("今日美味しかった食べ物を入力してください。")
  food = input()
  food = food.replace(" ","")
  check_food = food.replace(" ","")
  food_length = len(check_food)
  if food_length == 0:
    print("文字が入力されていません")
  elif food_length > 0:
    break

answer_sentense = f"今日は{food}を食べました。美味しかったです。"
print(answer_sentense)

実行結果

kotoko.jpg

最後に

Xに自動投稿してみたいです

4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?