Facebook
From Mlem, 3 Years ago, written in Python.
Embed
Download Paste or View Raw
Hits: 181
  1. Switching on camera from habitat with camels...
  2.  ___.-''''-.
  3. /___  @    |
  4. ',,,,.     |         _.'''''''._
  5.     '     |        /           \
  6.     |     \   _.-'             \
  7.     |      '.-'                  '-.
  8.     |                               ',
  9.     |                                '',
  10.      ',,-,                           ':;
  11.           ',,| ;,,                 ,' ;;
  12.              ! ; !'',,,',',,,,'!  ;   ;:
  13.             : ;  ! !       ! ! ;  ;   :;
  14.             ; ;   ! !      ! !  ; ;   ;,
  15.            ; ;    ! !     ! !   ; ;    
  16.            ; ;    ! !    ! !     ; ;
  17.           ;,,      !,!   !,!     ;,;
  18.           /_I      L_I   L_I     /_I
  19. Yey, our little camel is sunbathing!"""
  20.  
  21. lion = r"""
  22. Switching on camera from habitat with lions...
  23.                                               ,w.
  24.                                             ,YWMMw  ,M  ,
  25.                        _.---.._   __..---._.'MMMMMw,wMWmW,
  26.                   _.-""        '''           YP"WMMMMMMMMMb,
  27.                .-' __.'                   .'     MMMMW^WMMMM;
  28.    _,        .'.-'"; `,       /`     .--""      :MMM[==MWMW^;
  29.  ,mM^"     ,-'.'   /   ;      ;      /   ,       MMMMb_wMW"  @\
  30. ,MM:.    .'.-'   .'     ;     `\   ;     `,     MMMMMMMW `"=./`-,
  31. WMMm__,-'.'     /      _.\     F'''-+,,   ;_,_.dMMMMMMMM[,_ / `=_}
  32. "^MP__.-'    ,-' _.--""   `-,   ;       \ ; ;MMMMMMMMMMW^``; __|
  33.           /   .'            ; ;         )  )`{  \ `"^W^`,   \  :
  34.           /  .'             /  (       .'  /     Ww._     `.  `"
  35.         /  Y,              `,  `-,=,_{   ;      MMMP`""-,  `-._.-,
  36.        (--, )                `,_ / `) \/"")      ^"      `-, -;"\:
  37. The lion is yiffing!"""
  38.  
  39. deer = r"""
  40. Switching on camera from habitat with deers...
  41.   /|       |\
  42. `__\\       //__'
  43.   ||      ||
  44. \__`\    |'__/
  45.   `_\\   //_'
  46.   _.,:---;,._
  47.   \_:     :_/
  48.     |@. .@|
  49.     |     |
  50.     ,\.-./ \
  51.     ;;`-'   `---__________-----.-.
  52.     ;;;                         \_\
  53.     ';;;                         |
  54.      ;    |                      ;
  55.       \  \    \       |      /
  56.        \_, \   /        \    |\
  57.          |';|  |,,,,,,,,/ \   \ \_
  58.          |  |  |           \  /   |
  59.          \ \ |           |  / \ |
  60.           | || |           | |   | |
  61.           | || |           | |   | |
  62.           | || |           | |   | |
  63.           |_||_|           |_|   |_|
  64.          /_//_/           /_/   /_/
  65. Our 'Bambi' looks alive. Let's jump into a car!"""
  66.  
  67. goose = r"""
  68. Switching on camera from habitat with lovely goose...
  69.  
  70.                                    _
  71.                                ,-"" "".
  72.                              ,'  ____  `.
  73.                            ,'  ,'    `.  `._
  74.   (`.         _..--.._   ,'  ,'        \   \
  75.  (`-.\   .-""        ""'   /          (  d _b
  76. (`._  `-"" ,._             (            `-(   \
  77. <_  `     (  <`<            \             `-._\
  78.  <`-       (__< <           :
  79.   (__        (_<_<          ;
  80.    `------------------------------------------
  81. This bird stares intently at you... (Maybe it's time to change the channel?)"""
  82.  
  83. bat = r"""
  84. Switching on camera from habitat with bats...
  85. _________________               _________________
  86. ~-.              \ |\___/|  /              .-~
  87.     ~-.           \ / o o \ /           .-~
  88.        >           \\  W  //           <
  89.       /             /~---~\            \
  90.      /_            |       |            _\
  91.         ~-.        |       |        .-~
  92.            ;        \    /        i
  93.           /___      /\  /\     ___\
  94.                ~-. /  \_/  \ .-~
  95.                   V         V
  96. It looks like this bat is fine. It has Coronavirus"""
  97.  
  98. rabbit = r"""
  99. Switching on camera from habitat with rabbits...
  100.         ,
  101.        /|      __
  102.       / |   ,-~ /
  103.      Y :|  //  /
  104.      | jj /( .^
  105.      >-"~"-v"
  106.     /       Y
  107.    jo  o    |
  108.   ( ~T~     j
  109.    >._-' _./
  110.   /   "~"  |
  111.  Y     _,  |
  112. /| ;-"~ _  l
  113. / l/ ,-"~    \
  114. \//\/      .- \
  115. Y        /    Y
  116. l       I     !
  117. ]\     _\   /"\
  118. (" ~----( ~   Y.  )
  119. It seems there will be more rabbits soon!"""
  120.  
  121.  
  122. # write your code here
  123. zwierzaki = [camel, lion, deer, goose, bat, rabbit]
  124. habitat = int(input('No na kogo chcesz popatrzeć? ( ͡~ ͜ʖ ͡°) (Wpisz numer od 0 do 5) > '))
  125. zwierzak = zwierzaki[habitat]
  126. print(zwierzak)
  127.  
  128. print("""---
  129. To tyle. Teraz idź się wyspowiadać.
  130. """)
  131.  
  132.