Python Programs | IT Developer
IT Developer

Python Programs



Share with a Friend

Display ASCII art using print() - Python Program

# Displays simple ASCII art using multiple print statements print(" ^ ") print(" / \ ") print("/___\\") print("| |") print("|___|")

Output

 
OUTPUT :
 
  ^  
 / \ 
/___\
|   |
|___|