0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

文字列を暖簾にする

Posted at

プロ野球において、曰くつきの抑えが登板した時に欠かせない(?)暖簾を生成するスクリプト。
初心者なりにPythonで何か小さなものを作ってみようという取り組みです。

noren.py
print("暖簾にしたい文字列を入力してください")
keyword = input(">> ")
noren = ""
for i in list(keyword):
    noren = noren + "| " + i + " "
norenAll = "" + noren + "| ̄"
print(norenAll)
0
0
1

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?