LoginSignup
11
10

More than 5 years have passed since last update.

pythonでAAっぽく文字を表示する

Last updated at Posted at 2016-09-05

スクリーンショット 2016-09-05 11.17.19.png

こういう感じのやつ.

pyfigletを使う
https://github.com/pwaller/pyfiglet

from pyfiglet import Figlet
f = Figlet(font="slant")
msg = f.renderText("hello world")
print(msg)

これだけ.
Figlet(font="big")とか指定できる

スクリーンショット 2016-09-05 11.18.08.png

11
10
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
11
10