when I ran my program of a blackjack game, the python idle 3.4.2 came up with an error message saying, "Expected an indented block".
def end(player):
if player == 1:
print('You win, well done')
elif player == 0:
print('Computer won, game over')
print("Computer's cards:")
deal(computer_suit1,computer_card1)
deal(computer_suit2,computer_card2)
startup()