rock = ''' _______ ---' ____) (_____) (_____) (____) ---.__(___) ''' paper = ''' _______ ---' ____)____ ______) _______) _______) ---.__________) ''' scissors = ''' _______ ---' ____)____ ______) __________) (____) ---.__(___) ''' import random print("What do you choose? Type 0 for Rack, 1 for Paper or 2 for Scissors.") user_random = int(input()) computer_random = random.randint(0, 2) if user_ra..