2
2

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.

自作Python - sprintというprintの上位版

Posted at

ターミナル上のprint()がしょぼいと思って作った

無名関数 sprint

sprint = lambda x:print("-"*30+"\n"+x+"\n"+"-"*30)

Super Print = sprint(全速力で走る)ということでも合理的な名前だと思う。

使い方

-> sprint("Hello, world!")

------------------------------
Hello, world!
------------------------------

以上、つまらん投稿すいませんでした。

2
2
5

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?