Advertisement
Guest User

Prehistoric Haiku Generator

a guest
Jul 10th, 2012
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.68 KB | None | 0 0
  1. #!/usr/bin/env python3
  2.  
  3. import random
  4.  
  5. predators=("Abelia",
  6. "Adelphailurus",
  7. "Dinofelis",
  8. "Dolichofelis",
  9. "Dromopanthera",
  10. "Hemimachairodus",
  11. "Homotherium",
  12. "Jansofelis",
  13. "Leontoceryx",
  14. "Lokotunjailurus",
  15. "Machairodus",
  16. "Megantereon",
  17. "Metailurus",
  18. "Miomachairodus",
  19. "Miracinonyx",
  20. "Nimravides",
  21. "Paramachairodus",
  22. "Pikermi",
  23. "Pratifelis",
  24. "Proailurus",
  25. "Pseudaelurus",
  26. "Schaubia",
  27. "Sivaelurus",
  28. "Sivapanthera",
  29. "Sivapardus",
  30. "Smilodon",
  31. "Viretailurus",
  32. "Vishnufelis",
  33. "Xenosmilus")
  34. prey=("Ambulocetus",
  35. "Amotherium",
  36. "Ampelomeryx",
  37. "Antilocapra",
  38. "Archaeohippus",
  39. "Basilosaurus",
  40. "Blastomeryx",
  41. "Bootherium",
  42. "Brachycrus",
  43. "Bubalus",
  44. "Capromeryx",
  45. "Ceratomeryx",
  46. "Cervalces",
  47. "Cormohipparion",
  48. "Cosoryx",
  49. "Cranioceras",
  50. "Dicrocerus",
  51. "Dorudon",
  52. "Elasmotherium",
  53. "Eotragus",
  54. "Eporeodon",
  55. "Euceratherium",
  56. "Eurygnathohippus",
  57. "Gandakasia",
  58. "Gazella",
  59. "Hayoceros",
  60. "Heteroprox",
  61. "Hexameryx",
  62. "Hexobelomeryx",
  63. "Himalayacetus",
  64. "Hipparion",
  65. "Hippidion",
  66. "Hippotherium",
  67. "Ichthyolestes",
  68. "Ilingoceros",
  69. "Iranotherium",
  70. "Kipsigicerus",
  71. "Kutchicetus",
  72. "Kyptoceras",
  73. "Leptauchenia",
  74. "Leptobos",
  75. "Libralces",
  76. "Longirostromeryx",
  77. "Megalotragus",
  78. "Menoceras",
  79. "Meryceros",
  80. "Merychippus",
  81. "Merycodus",
  82. "Merycoidodon",
  83. "Mesohippus",
  84. "Mesoreodon",
  85. "Miniochoerus",
  86. "Miohippus",
  87. "Nalacetus",
  88. "Navahoceros",
  89. "Odocoileus",
  90. "Orohippus",
  91. "Osbornoceros",
  92. "Ottoceros",
  93. "Pakicetus",
  94. "Palaeotragus",
  95. "Paracosoryx",
  96. "Parahippus",
  97. "Parmularius",
  98. "Pediomeryx",
  99. "Pelorovis",
  100. "Plioceros",
  101. "Pliohippus",
  102. "Proantilocapra",
  103. "Promerycochoerus",
  104. "Protoceras",
  105. "Protocetus",
  106. "Pseudoprotoceras",
  107. "Ramoceros",
  108. "Rodhocetus",
  109. "Samotherium",
  110. "Scaphohippus",
  111. "Sespia",
  112. "Sinotherium",
  113. "Sivatherium",
  114. "Sphenophalos",
  115. "Stockoceros",
  116. "Submeryceros",
  117. "Syndyoceras",
  118. "Synthetoceras",
  119. "Tetrameryx",
  120. "Texoceros",
  121. "Triceromeryx",
  122. "Zygorhiza")
  123. actions=("preys on",
  124. "is struck by",
  125. "stalks",
  126. "feasts on",
  127. "gets pwned by",
  128. "outwits",
  129. "is outwitted by",
  130. "is confused by",
  131. "dislikes the taste of",
  132. "chases",
  133. "contributes to extinction of",
  134. "is driven away by",
  135. "smells",
  136. "tracks")
  137. comments=("but I smell an epoch mismatch.",
  138. "what if the predator bit more than it can chew?",
  139. "and life on Earth evolves as planned.",
  140. "too bad they are both extinct.",
  141. "have pity on the poor herbivore.",
  142. "but all are beaten by survival of the strongest",
  143. "and what are YOU doing reading this?",
  144. "but you don't have any idea what those animals look like anyway.",
  145. "oh my gosh.",
  146. "a long time ago, in your galaxy and on your planet...")
  147.  
  148. for i in (1,2):
  149.     print(random.choice(predators), random.choice(actions), random.choice(prey))
  150. print(random.choice(comments))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement