Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add onefineday888 #22

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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