4 lines
72 B
Python
4 lines
72 B
Python
|
|
def würfeln():
|
||
|
|
from random import randint
|
||
|
|
return randint(1, 6)
|