Deck of cards
In this exercise, you'll use the following deck of cards to calculate some probabilities in each step:
Diese Übung ist Teil des Kurses
Foundations of Probability in Python
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Ace probability
P_Ace = ____/____
# Not Ace probability
P_not_Ace = 1 - ____
print(P_not_Ace)