Is this possible with pyhton? If it is, how can you do it?
def raise():
raise = raw_input('Do you really want to raise? y/n')
if raise == 'y':
bet = bet+1
return # Should RETURN to play(), after raise()
# Like "goto LABEL"
else:
return
def play():
bet = 1
print 'The computer did a bet of 1 dollar.'
print 'I raise.'
raise() # The 'LABEL'
print 'The bet now is', bet
print 'End of the test."