Book Image

AI Crash Course

By : Hadelin de Ponteves
5 (2)
Book Image

AI Crash Course

5 (2)
By: Hadelin de Ponteves

Overview of this book

Welcome to the Robot World … and start building intelligent software now! Through his best-selling video courses, Hadelin de Ponteves has taught hundreds of thousands of people to write AI software. Now, for the first time, his hands-on, energetic approach is available as a book. Starting with the basics before easing you into more complicated formulas and notation, AI Crash Course gives you everything you need to build AI systems with reinforcement learning and deep learning. Five full working projects put the ideas into action, showing step-by-step how to build intelligent software using the best and easiest tools for AI programming, including Python, TensorFlow, Keras, and PyTorch. AI Crash Course teaches everyone to build an AI to work in their applications. Once you've read this book, you're only limited by your imagination.
Table of Contents (17 chapters)
16
Index

for and while loops

You can think of a loop as continuously repeating the same instructions over and over until some condition is satisfied that breaks this loop. For example, the previous code was not a loop; since it was only executed once, we only checked a once.

There are two types of loops in Python:

  • for loops
  • while loops

for loops have a specific number of iterations. You can think of an iteration as a single execution of the specific instructions included in the for loop. The number of iterations tells the program how many times the instruction inside the loop should be performed.

So, how do you create a for loop? Simply, just like this:

for i in range(1, 20):
    print(i)

We initialize this loop by writing for to specify the type of loop. Then we create a variable i, that will be associated with integer values from range (1,20). This means that when we enter this loop for the first time, i will be equal to 1, the second time it will...