Let me run some quick calculations here:
from math import comb
def aa_vs_kk_probability():
# Total possible opponent hands after you have AA
total_hands = comb(50, 2)
# Possible KK combinations left
kk_hands = comb(4, 2)
return kk_hands / total_hands
print(f"Actual...