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
152 changes: 64 additions & 88 deletions aibuildersart/asciiart.py
Original file line number Diff line number Diff line change
@@ -1,88 +1,64 @@
class UncleEngineer:
'''
test = UncleEngineer()
test.art()
'''
def __init__(self):
self.name = 'Uncle Engineer'

def art(self):
asciiart = '''
Z
Z
.,., z
(((((()) z
((('_ _`) '
((G \ |)
(((` " ,
.((\.:~: .--------------.
__.| `"'.__ | \ |
.~~ `---' ~. | . :
/ ` | `-.__________)
| ~ | : :
| | : |
| _ | | [ ## :
\ ~~-. | , oo_______.'
`_ ( \) _____/~~~~ `--___
| ~`-) ) `-. `--- ( - a:f -
| '///` | `-.
| | | | `-.
| | | | `-.
| | |\ |
| | | \|
`-. | | |
`-| '
'''
print(asciiart)

def __str__(self):
return self.name

class GuitarDev:
'''
test = UncleEngineer()
test.art()
'''
def __init__(self):
self.name = 'GuitarDev'

def art(self):
asciiart = '''
. ,,
,(&&/ %/
/##%&. &@%
,%% *@&%.
&, ,@&(
*&.#&&#% ,.
%* .&,
*& .%
&(. #*
*&/ .&.
.&#/ *#
/##/.%*
&,%*.&.
/(.#*/#
,#@&&&@#, .@..%*%.
&, (( .%/%
%. .&. ,#%/ I'm Guitar Dev.
,# #( .%&.
.& *&#//#&(,%%&,
./&, #(&* ,&*% /&%/,
,%&, ,(% %/( ,%
*&. &#* ,&(, *&.
*% ##(&%%%#(%. .&*
(/ .%
.% .&/ .%
,# (* .%#. %.
&. .& ,%%* (,
,# ,%(,.*, .## %.
.&. .. ,#
,&. ,%
##. .%*
.%&, (&.
.*(#%&%#(,
'''
print(asciiart)

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

def art(self):
asciiart = '''
Z
Z
.,., z
(((((()) z
((('_ _`) '
((G \ |)
(((` " ,
.((\.:~: .--------------.
__.| `"'.__ | \ |
.~~ `---' ~. | . :
/ ` | `-.__________)
| ~ | : :
| | : |
| _ | | [ ## :
\ ~~-. | , oo_______.'
`_ ( \) _____/~~~~ `--___
| ~`-) ) `-. `--- ( - a:f -
| '///` | `-.
| | | | `-.
| | | | `-.
| | |\ |
| | | \|
`-. | | |
`-| '
'''
print(asciiart)

def __str__(self):
return self.name

class onefineday888:
'''
test = onefineday888()
test.art()
'''
def __init__(self):
self.name = 'onefineday888'

def art(self):
asciiart = '''
----------------

/ \__
( @\___
/ O
/ (_____/
/_____/ U

----------------
'''
print(asciiart)

def __str__(self):
return self.name