Skip to content

Commit

Permalink
Add my own asciiart
Browse files Browse the repository at this point in the history
  • Loading branch information
ttontoey committed Apr 22, 2021
1 parent cfd15dc commit 902c312
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions aibuildersart/asciiart.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,52 @@ def art(self):

def __str__(self):
return self.name

class ttontoey:
'''
test = UncleEngineer()
test.art()
'''
def __init__(self):
self.name = 'Uncle Engineer'

def art(self):
asciiart = '''
___________¶¶¶¶¶¶¶¶¶¶¶
________¶¶¶¶¶________¶¶¶¶¶¶
_____¶¶¶¶_________________¶¶¶¶¶¶¶¶¶¶¶¶
____¶¶_______________________¶¶¶__¶¶¶¶¶¶¶
___¶¶___________________________¶¶_¶¶¶¶¶¶¶¶
___¶¶_____¶¶¶¶____________________¶_______¶¶
___¶¶_____¶0_¶_____________________¶¶_¶¶¶¶¶¶¶
_¶¶_____¶________¶¶¶¶_______________¶¶_¶¶
¶¶_____¶___¶¶¶¶¶¶¶¶¶¶¶________¶______¶_¶¶
¶¶__¶¶¶¶¶¶¶¶¶¶_____¶¶_¶_____¶__¶¶_____¶_¶¶
_¶¶¶¶¶¶¶______¶_¶¶__¶_¶_____¶¶¶__¶_______¶
______________¶_¶¶¶¶¶_¶_____¶¶¶¶__¶¶_____¶¶
______________¶_¶¶¶¶¶¶_¶____¶__¶¶¶¶¶¶_____¶
______________¶¶¶¶¶__¶_¶____¶____¶¶¶¶¶____¶¶
_______________¶¶¶___¶¶_¶___¶¶¶¶__¶¶¶¶¶___¶¶
______________________¶__¶__¶¶_¶¶¶__¶¶¶¶___¶
_______________________¶¶¶¶__¶___¶¶__¶¶¶___¶
_________________________¶¶¶¶¶_____¶_¶¶¶¶__¶¶
____________________________________¶_¶¶¶__¶¶
_____________________________________¶¶¶¶¶_¶¶
______________________________________¶¶¶¶_¶¶
______________________________________¶¶¶¶_¶¶
_______________________________________¶_¶_¶
_______________________________________¶___¶
_______________________________________¶¶_¶¶
___________________________________¶¶¶¶¶¶_¶¶¶¶
__________________________________¶¶________¶¶¶¶
_________________________________¶¶___________¶¶¶
_________________________________¶¶_¶_¶¶¶_______¶¶
__________________________________¶¶_¶¶_¶¶¶¶____¶¶
____________________________________________¶¶___¶
_____________________________________________¶__¶
_______________________________________________¶¶_
'''
print(asciiart)

def __str__(self):
return self.name

0 comments on commit 902c312

Please sign in to comment.