import os import random coin = 0 def Game(): global coin bet = int(input('how much will you bet? : ')) if bet > coin: print('\nNo... you cannot bet that much') print(f'you only have {coin}') print(f'your bet become {coin}') bet = coin input('\npress any key to roll..') me = random.randint(1,6) print(f'your number is {me}') print('\ncomputer turn') comp = random.randint(1,6) print(f'computer number is {comp}') print() if(comp>me): print('computer wins') coin = coin - bet elif(comp