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 Spongbob #32

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
Binary file added .DS_Store
Binary file not shown.
129 changes: 28 additions & 101 deletions aibuildersart/asciiart.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,116 +38,43 @@ def art(self):
def __str__(self):
return self.name

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

def art(self):
asciiart = '''
------------------------------------------------
(\
\'\
\'\ __________
/ '| ()_________)
\ '/ \ ~~~~~~~~ \
\ \ ~~~~~~ \
==). \__________\
(__) ()__________) Ridwan0019
------------------------------------------------
'''
print(asciiart)

def __str__(self):
return self.name



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

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

def __str__(self):
return self.name

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

def art(self):
asciiart = '''
,.ood888888888888boo.,
.od888P^"" ""^Y888bo.
.od8P'' ..oood88888888booo. ``Y8bo.
.odP'" .ood8888888888888888888888boo. "`Ybo.
.d8' od8'd888888888f`8888't888888888b`8bo `Yb.
d8' od8^ 8888888888[ `' ]8888888888 ^8bo `8b
.8P d88' 8888888888P Y8888888888 `88b Y8.
d8' .d8' `Y88888888' `88888888P' `8b. `8b
.8P .88P """" """" Y88. Y8.
88 888 888 88
88 888 888 88
88 888. .. .. .888 88
`8b `88b, d8888b.od8bo. .od8bo.d8888b ,d88' d8'
Y8. `Y88. 8888888888888b d8888888888888 .88P' .8P
`8b Y88b. `88888888888888 88888888888888' .d88P d8'
Y8. ^Y88bod8888888888888..8888888888888bod88P^ .8P
`Y8. ^Y888888888888888LS888888888888888P^ .8P'
`^Yb., `^^Y8888888888888888888888P^^' ,.dP^'
`^Y8b.. ``^^^Y88888888P^^^' ..d8P^'
`^Y888bo., ,.od888P^'
"`^^Y888888888888P^^'"
'''
--------------------------------------------
.--..--..--..--..--..--.
.' \ (`._ (_) _ |
.' | '._) (_) |
\ _.')\ .----..---. /
|(_.' | / .-\-. \ |
\ 0| | ( O| O) | o|
| _ | .--.____.'._.-. |
\ (_) | o -` .-` |
| \ |`-._ _ _ _ _\ /
\ | | `. |_||_| |
| o | \_ \ | -. .-.
|.-. \ `--..-' O | `.`-' .'
_.' .' | `-.-' /-.__ ' .-'
.' `-.` '.|='=.='=.='=.='=|._/_ `-'.'
`-._ `. |________/\_____| `-.'
.' ).| '=' '='\/ '=' |
`._.` '---------------'
//___\ //___|
|| ||
||_.-. ||_.-.
(_.--__) (_.--__)
--------------------------------------------
'''
print(asciiart)

def __str__(self):
return self.name