I have started learning python on my own for fun and I was writing this and did not get the results i wanted:
if no1234 == 0:
print "Player and Computer tie!\n"
elif no1234 == 1 or 2:
print "Player wins!\n"
elif no1234 == 3 or 4:
print "Computer wins!\n"
computer wins would not show up, is there something im forgetting