So I want to save a variable from my loop but when it restarts it changes the variable
print('Dice script')
for i in range(3):
print('Rolling')
time.sleep(1)
droll = (randint(1, 6))
sdroll = str(droll)
print('Dice rolled '+ sdroll)
time.sleep(3)
add = (Here I want to add up the variables that i got from the three loops)
print(add)
so that I get the variable droll all three times