Happy Birthday 🎂 status ✨✨ using python

In this tutorial, we are going to learn how to print Happy Birthday Status using Python. We have added the installation tutorial with the source code and also the output.

So let us begin with how to print Happy Birthday Status using Python.

 

Installation:

Open the command prompt and enter the below code.

 

pip install pyfiglet

 

Source Code: Happy Birthday Status using Python.

 

#Happy Birthday in Python
import pyfiglet
  
wish = pyfiglet.figlet_format("Happy Birthday", font = "slant"  )

print(wish)

 

Output:

 

Leave a Reply

Your email address will not be published. Required fields are marked *