“Aplikacja Rolling Dice w Python” Kod odpowiedzi

Python symulatorów do walcowania kości

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

Aplikacja Rolling Dice w Python

import random

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

Odpowiedzi podobne do “Aplikacja Rolling Dice w Python”

Pytania podobne do “Aplikacja Rolling Dice w Python”

Więcej pokrewnych odpowiedzi na “Aplikacja Rolling Dice w Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu