LoslegenKostenlos loslegen

Deck of cards

In this exercise, you'll use the following deck of cards to calculate some probabilities in each step:

Deck of cards

Diese Übung ist Teil des Kurses

Foundations of Probability in Python

Kurs anzeigen

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)
Code bearbeiten und ausführen