Zookeper
camel = r"""
Switching on camera from habitat with camels...
_.-''''-.
/_ @ |
',,,,. | .'''''''.
' | / \
| \ _.-' \
| '.-' '-.
| ',
| '',
',,-, ':;
',,| ;,, ,' ;;
! ; !'',,,',',,,,'! ; ;:
: ; ! ! ! ! ; ; :;
; ; ! ! ! ! ; ; ;,
; ; ! ! ! ! ; ;
; ; ! ! ! ! ; ;
;,, !,! !,! ;,;
/_I L_I L_I /_I
Yey, our little camel is sunbathing!"""
lion = r"""
Switching on camera from a habitat with lions...
,w.
,YWMMw ,M ,
.---.. _..---..'MMMMMw,wMWmW,
_.-"" ''' YP"WMMMMMMMMMb,
.-' __.' .' MMMMW^WMMMM;
_, .'.-'"; `, /` .--"" :MMM[==MWMW^;
,mM^" ,-'.' / ; ; / , MMMMb_wMW" @\
,MM:. .'.-' .' ; `\ ; `, MMMMMMMW `"=./`-,
WMMm_,-'.' / _.\ F'''-+,, ;,.dMMMMMMMM[, / `=_}
"^MP_.-' ,-' _.--"" `-, ; \ ; ;MMMMMMMMMMW^``; _|
/ .' ; ; ) )`{ \ `"^W^`, \ :
/ .' / ( .' / Ww._ `. `"
/ Y, `, `-,=,{ ; MMMP`""-, `-..-,
(--, ) `,_ / `) \/"") ^" `-, -;"\:
The lion is croaking!"""
deer = r"""
Switching on camera from habitat with deers...
/| |\
`_\\ //_'
|| ||
\_`\ |'_/
`\\ //'
.,:---;,.
\_: :_/
|@. .@|
| |
,\.-./ \
;;`-' `---____-----.-.
;;; \_\
';;; |
; | ;
\ \ \ | /
\_, \ / \ |\
|';| |,,,,,,,,/ \ \ \_
| | | \ / |
\ \ | | / \ |
| || | | | | |
| || | | | | |
| || | | | | |
|||| || ||
//// // //
Our 'Bambi' looks hungry. Let's go to feed it!"""
goose = r"""
Switching on camera from habitat with lovely goose...
_
,-"" "".
,' __ `.
,' ,' `. `._
(`. ..--.. ,' ,' \ \
(`-.\ .-"" ""' / ( d _b
(`._ `-"" ,._ ( `-( \
<_ ` ( <`< \ `-._\
<`- (__< < :
(_ (<_< ;
`------------------------------------------
This bird stares intently at you... (Maybe it's time to change the channel?)"""
bat = r"""
Switching on camera from habitat with bats...
______ ______
-. \ |\___/| / .-
-. \ / o o \ / .-
> \\ W // <
/ /---\ \
/_ | | _\
-. | | .-
; \ / i
/_ /\ /\ _\
-. / \_/ \ .-
V V
It looks like this bat is fine."""
rabbit = r"""
Switching on camera from habitat with rabbits...
,
/| __
/ | ,-~ /
Y :| // /
| jj /( .^
>-"~"-v"
/ Y
jo o |
( T j
>._-' _./
/ "~" |
Y _, |
/| ;-"~ _ l
/ l/ ,-"~ \
\//\/ .- \
Y / Y
l I !
]\ _\ /"\
(" ~----( ~ Y. )
It seems there will be more rabbits soon!"""
animals = [camel, lion, deer, goose, bat, rabbit]
while True:
A = input('Which habitat # do you need? ')
if A != 'exit':
B=int(A)
print(animals[B])
if A == 'exit':
print('See you!')
break
Comments
Post a Comment