General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
kd1s
The New York Times
comments
Comments by "kd1s" (@kd1s) on "Dungeons & Dragons: Satanic Panic | Retro Report | The New York Times" video.
I've misplaced my dice so I wrote a python app that does dice rolls depending on number of sides on the die. Here's the code: def diceroll(): print("Enter number of die sides") s=int(input("Number of sides:")) print("You rolled:") print (randint(1,s)) return()
1