Both of you guys are on the money, I changed it and basically used if elif as it should. I used names for variables I'll give you guys a sample just to give a visual.
Code: [ select ]
def politics(*args):
Democrat, Republican = args
print "President Obama'\s a %s, Romney'\s a %s" % (Democrat, Republican)
print("Who will you vote for?")
politics("Democrat", "Republican")
Romney = 1
Obama = 2
answer = int(input("Enter your choice 1, 2:"))
if answer == Romney:
print"So you like Romney?"
elif answer > Romney:
print "So you like President Obama?"
print
print
prompt = 'press enter'
raw_input(prompt),
a = "poor"
b = "rich"
r = "Republican"
d = "Democrat"
print "Some people say when your rich you vote %s" % r
print "And if you vote %r" % d
print "you are %s" % a