Advertisement
FrostRobin1

Untitled

Apr 26th, 2017
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.43 KB | None | 0 0
  1. def goodVsEvil(good, evil):
  2.     good = [1,2,3,3,4,10]
  3.     evil = [1,2,2,2,3,5,10]
  4.     #Two strings; each string has a space-separated list of numbers.
  5.     if good > evil:
  6.         return "Battle Result: Good triumphs over Evil"
  7.     elif evil > good:
  8.         return "Battle Result: Evil eradicates all trace of Good"
  9.     elif evil == good:
  10.         return "Battle Result: No victor on this battle field"
  11.     goodVsEvil(good,evil)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement