Skip to content
Open

send #18

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
62 changes: 62 additions & 0 deletions aibuildersart/asciiart.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,65 @@ def art(self):

def __str__(self):
return self.name

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

def art(self):
asciiart = '''

……..@*@*
….@*……..@* …………………………@*
..@*……………@* ………………@*……..@*
.@*……………….@*……….@*……………..@*
@*…………………..@*…@*………………….@*
@*………………………*……………………..@*
.@*…………………………………………….@*
..@*………………………………………..@*
….@*…………………………………..@*
……..@*…………………………..@*
………..@*……………………@*
…………….@*…………..@*
……………….@*……@*
………………….*..@*
……………………@
……………………*
……………………@
……………………*

'''
print(asciiart)

def __str__(self):
return self.name

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

def art(self):
asciiart = '''


∵*.•´¸.•*´✶´♡
° ☆ ° ˛*˛☆_Π______˚☆
*˚ ˛★˛•*/________/ ~ ⧹。˚ ˚
˚ ˛•˛•˚ | 田田 |門| ˚
🌷╬╬🌷╬╬🌷╬╬🌷╬╬🌷

'''
print(asciiart)

def __str__(self):
return self.name