Alph= ["a","A","b","B","c","C","D","d","e","E","f","F","g","G","h","H","i","I","j","J","k","K","l","L","m","M","n","N","o","O","p","P","q","Q","r","R","s","S","t","T","u","U","v","V","w","W","x","X","y","Y","z","Z"]
Num = [1,2,3,4,5,6,7,8,9,0]
D1 = random.randint(1,6)
D2 = random.randint(1,6)
P1_S = 0
P1_MS = input("Type a letter to begin player 1 and roll dice")
if P1_MS == Alph or Num:
P1_S = P1_S + D1 + D2, print("First roll is", D1), print("Second roll is", D2)
print(P1_S, "is the total amount")
After this I appear to get the "none, none" part so how can I remove that from my output? Output:
First roll is 3
Second roll is 3
(6, None, None) is the total amount
How can I remove the None, None at the end of the output?