Home > ASCII Art


Yoda Text Art: シンプルで簡単な方法

Pythonを使用したYoda Text Artの生成方法:# 必要なモジュールのインポート from pyfiglet import Figlet # Figletオブジェクトの作成 custom_fig = Figlet(font='starwars') # テキストの指定 text = "Do or do not, there is no try." # Yoda Text Artの生成 ascii_art = custom_fig.renderText(text) # 結果の表示 print(ascii_art)>>More