Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python3
- import random
- predators=("Abelia",
- "Adelphailurus",
- "Dinofelis",
- "Dolichofelis",
- "Dromopanthera",
- "Hemimachairodus",
- "Homotherium",
- "Jansofelis",
- "Leontoceryx",
- "Lokotunjailurus",
- "Machairodus",
- "Megantereon",
- "Metailurus",
- "Miomachairodus",
- "Miracinonyx",
- "Nimravides",
- "Paramachairodus",
- "Pikermi",
- "Pratifelis",
- "Proailurus",
- "Pseudaelurus",
- "Schaubia",
- "Sivaelurus",
- "Sivapanthera",
- "Sivapardus",
- "Smilodon",
- "Viretailurus",
- "Vishnufelis",
- "Xenosmilus")
- prey=("Ambulocetus",
- "Amotherium",
- "Ampelomeryx",
- "Antilocapra",
- "Archaeohippus",
- "Basilosaurus",
- "Blastomeryx",
- "Bootherium",
- "Brachycrus",
- "Bubalus",
- "Capromeryx",
- "Ceratomeryx",
- "Cervalces",
- "Cormohipparion",
- "Cosoryx",
- "Cranioceras",
- "Dicrocerus",
- "Dorudon",
- "Elasmotherium",
- "Eotragus",
- "Eporeodon",
- "Euceratherium",
- "Eurygnathohippus",
- "Gandakasia",
- "Gazella",
- "Hayoceros",
- "Heteroprox",
- "Hexameryx",
- "Hexobelomeryx",
- "Himalayacetus",
- "Hipparion",
- "Hippidion",
- "Hippotherium",
- "Ichthyolestes",
- "Ilingoceros",
- "Iranotherium",
- "Kipsigicerus",
- "Kutchicetus",
- "Kyptoceras",
- "Leptauchenia",
- "Leptobos",
- "Libralces",
- "Longirostromeryx",
- "Megalotragus",
- "Menoceras",
- "Meryceros",
- "Merychippus",
- "Merycodus",
- "Merycoidodon",
- "Mesohippus",
- "Mesoreodon",
- "Miniochoerus",
- "Miohippus",
- "Nalacetus",
- "Navahoceros",
- "Odocoileus",
- "Orohippus",
- "Osbornoceros",
- "Ottoceros",
- "Pakicetus",
- "Palaeotragus",
- "Paracosoryx",
- "Parahippus",
- "Parmularius",
- "Pediomeryx",
- "Pelorovis",
- "Plioceros",
- "Pliohippus",
- "Proantilocapra",
- "Promerycochoerus",
- "Protoceras",
- "Protocetus",
- "Pseudoprotoceras",
- "Ramoceros",
- "Rodhocetus",
- "Samotherium",
- "Scaphohippus",
- "Sespia",
- "Sinotherium",
- "Sivatherium",
- "Sphenophalos",
- "Stockoceros",
- "Submeryceros",
- "Syndyoceras",
- "Synthetoceras",
- "Tetrameryx",
- "Texoceros",
- "Triceromeryx",
- "Zygorhiza")
- actions=("preys on",
- "is struck by",
- "stalks",
- "feasts on",
- "gets pwned by",
- "outwits",
- "is outwitted by",
- "is confused by",
- "dislikes the taste of",
- "chases",
- "contributes to extinction of",
- "is driven away by",
- "smells",
- "tracks")
- comments=("but I smell an epoch mismatch.",
- "what if the predator bit more than it can chew?",
- "and life on Earth evolves as planned.",
- "too bad they are both extinct.",
- "have pity on the poor herbivore.",
- "but all are beaten by survival of the strongest",
- "and what are YOU doing reading this?",
- "but you don't have any idea what those animals look like anyway.",
- "oh my gosh.",
- "a long time ago, in your galaxy and on your planet...")
- for i in (1,2):
- print(random.choice(predators), random.choice(actions), random.choice(prey))
- print(random.choice(comments))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement