Dice roll in Python

Python is a fun language, the syntax is what feels so nice about it and how the indents are used to format the code, after using Jade and Sass, this comes very naturally to me.

I was learning about modules and found random to be a good place to start off and turned out to be a remarkably interesting internal module. To understand how it works I created a dice roll game, with just a few lines of code it would generate a random number, which in this context would be the side of the die, with a number.

As you can see it runs five times and generates random numbers.

"""
    Simple console game that returns random sides of a die 5 times
"""

# Importing random module
import random

# Adding inital attempt value
attempt = 1

# Run five times until attempt value equals 5
while attempt < 5:
    number = random.randint(1, 6)
    print("Your die roll is: " + str(number))
    attempt = attempt + 1

This was a great exercise and an interesting way to learn Python.

I'm Feeling Lucky
Darryl Dias

Written by Darryl Dias

The AI guy and founder of Caprycon, building AI-powered tools, exploring emerging technologies, and sharing insights from the world of artificial intelligence