Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions aibuildersart/asciiart.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ def __init__(self):

def art(self):
asciiart = '''

Z
Z
.,., z
Expand All @@ -32,6 +33,45 @@ def art(self):
| | | \|
`-. | | |
`-| '

'''
print(asciiart)

def __str__(self):
return self.name

class ApichaiCoding:
'''
test = UncleEngineer()
test.art()
'''
def __init__(self):
self.name = 'Apichai Thinthonglang'

def art(self):
asciiart = '''

~~~~~~~~~~~~~~~~~~~~~~~~~
/| __
/ | ,-~ /
Y :| // /
| jj /( .^
>-"~"-v"
/ Y
jo o |
( ~T~ j
>._-' _./
/ "~" |
Y _, |
/| ;-"~ _ l
/ l/ ,-"~ \
\//\/ .- \
Y / Y -saveralph
l I !
]\ _\ /"\
(" ~----( ~ Y. )
~~~~~~~~~~~~~~~~~~~~~~~~~

'''
print(asciiart)

Expand Down