from random import randrange
n = int(input("Enter the number of throws: "))
throw1 = []
throw2 = []
for i in range(n):
throw1.append(int(randrange(1,7)))
throw2.append(int(randrange(1, 7)))
final_throw = sum(throw1, throw2)
print(throw1,throw2)
I want to sum throw1 and throw2 together but I don't know how(this is not working).
My issue is quite easy to solve but as a beginner I dont see the solution. Please can you help me ?