How can i use this code (below) to take the random numbers from the dice roll and change 6 to "A" and 5 to "K" and ect.
#Poker Dice! Noah Sutton 4/24/10
import random
rounds=0
#roll dice
def roll_dice():
#Dice variables
dice1=random.randint(1,6)
dice2=random.randint(1,6)
dice3=random.randint(1,6)
dice4=random.randint(1,6)
dice5=random.randint(1,6)
'1'=9
'2'=10
'3'=J
'4'=Q
'5'=K
'6'=A
print "You rolled "+str(dice1)+","+str(dice2)+","+str(dice3)+","+str(dice4)+","+str(dice5)
#Implement the code:
roll_dice()