“Würfel -Rolling -App in Python” Code-Antworten

Würfel -Roll -Simulator -Python

from random import randint

def roll_dice():
    print(f"Number is: {randint(1,6)}")

# Do this to simulate once
roll_dice()   

# Do this to simulate multiple times
whatever = 12 # Put the number of times you want to simulate here
for number in range(whatever):
    roll_dice()
Random boi

Würfel -Rolling -App in Python

import random

print(f"Your number is: {random.randint(1,6)}")
Rajitha Amarasinghe

Ähnliche Antworten wie “Würfel -Rolling -App in Python”

Fragen ähnlich wie “Würfel -Rolling -App in Python”

Weitere verwandte Antworten zu “Würfel -Rolling -App in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen